.oc--quote {
  background: #fff;
  border-left: 5px solid #28a745;
  padding: 15px 15px 5px 15px;
  margin: 10px 0;
  color: #495057;
  font-size: 15px;
}
.oc--quote .cmd{
    color: green;
}

.pdf-view{
  width:100%;
  height:70vh;
  border:none;
}

.img-view-box {
  border: 1px solid #ccc;
  background: #6c757d;
}

.img-view-box .img-view{
  width:100%;
  height:70vh;
  display: grid;
  overflow: auto;

}
.img-view-box .img-view img {
  position: relative;
  width: 100%;
  margin:auto;
  cursor: grab;
}
.img-view-box .img-view img:active {
  cursor: grabbing;
}

.img-view-box .img-view::-webkit-scrollbar{
  background: white;
  position: absolute;
  width: 8px;
  height: 8px;
  transition: all .3s ease-in-out;
}

.img-view-box .img-view::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.3);
  transition: all .3s ease-in-out;
}

.img-view-box .img-view:hover::-webkit-scrollbar-thumb{
  background: rgba(0,0,0, .6);
  border-radius: 5px;
}

.img-view-box .img-view::-webkit-scrollbar-track{
  background: white;
}
.img-view-box .img-view-tools{
  position: relative;
  z-index: 1;
}
.img-view-box .img-view-tools .tools {
  position: absolute;
  list-style: none;
  display: flex;
  top: 5px;
  right: 10px;
}
.img-view-box .img-view-tools .tools li {
  display: flex;
  background: white;
  border-radius: 50%;
  margin: 1px;
}
.img-view-box .img-view-tools .tools li:hover {
  box-shadow: -1px 1px 7px 0px rgba(0, 0, 0, 0.7), inset -1px 1px 1px 0px rgba(0, 0, 0, 0.3);
}
.img-view-box .img-view-tools .tools li a{
  border-radius: 50%;
  border: 1px solid #ccc;
  width: 35px;
  height: 35px;
  text-decoration: none;
}

.img-view-box .img-view-tools .tools li a.tool-plus {
  background: url(../icon/plus.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.img-view-box .img-view-tools .tools li a.tool-minus {
  background: url(../icon/minus.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.img-view-box .img-view-tools .tools li a.tool-fit-content {
  background: url(../icon/fit-content.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

/* .img-view-box .img-view-tools .tool .symbol.plus {
  background: url(../icon/plus.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.img-view-box .img-view-tools .tool .symbol.minus {
  background: url(../icon/minus.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.img-view-box .img-view-tools .tool .symbol.fit-content {
  background: url(../icon/fit-content.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
} */

@media only screen and (max-height: 420px){
  .pdf-view{
      height:50vh;
  }
  .img-view-box .img-view{
      height:50vh;
  }
}

.oc--modal {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(33, 33, 33, 0.4);
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s ease;
  transition: visibility 0s 0.3s, opacity 0.3s ease;
  z-index: 1050;
  font-size: 13px;
  cursor: pointer;
}

.oc--modal .oc--modal-dialog {
  position: absolute;
  top: 10px;
  bottom: 20px;
  max-height: 100%;
  width: 500px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--modal .oc--modal-dialog .oc--modal-content {
  cursor: default;
  position: absolute;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
  min-height: 60px;
  max-height: 100%;
  background: #fff;
  width: 100%;
  overflow: hidden;
  top: 48%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  border-radius: 3px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--modal .oc--modal-dialog .oc--modal-content .oc--modal-btn-close {
  position: absolute;
  right: 14px;
  top: 14px;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 25px;
  cursor: pointer;
  color: #ccc;
  border-radius: 0 3px 0 0;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 50%;
  z-index: 100;
}

.oc--modal .oc--modal-dialog .oc--modal-content .oc--modal-btn-close:hover {
  color: #ff1d1d;
}

.oc--modal .oc--modal-dialog .oc--modal-content .oc--modal-btn-close::before {
  content: '\00d7';
}

.oc--modal .oc--modal-dialog .oc--modal-content .oc--modal-header {
  position: absolute;
  border-bottom: 1px solid #ccc;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  border-radius: 3px 3px 0 0;
  top: 0;
  left: 0;
  right: 0;
}

.oc--modal .oc--modal-dialog .oc--modal-content .oc--modal-header .oc--modal-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--sv-default);
  font-weight: 500;
}

.oc--modal .oc--modal-dialog .oc--modal-content .oc--modal-header .oc--modal-title small {
  display: block;
  font-size: 10px;
}

.oc--modal .oc--modal-dialog .oc--modal-content .oc--modal-body {
  position: relative;
  padding: 10px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  margin-top: 60px;
  margin-bottom: 60px;
}

.oc--modal .oc--modal-dialog .oc--modal-content .oc--modal-footer {
  position: absolute;
  border-top: 1px solid #ccc;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  height: 60px;
  border-radius: 0 0 3px 3px;
  bottom: 0;
  left: 0;
  right: 0;
}

.oc--slide {
  position: absolute;
  overflow-x: hidden;
  overflow-y: hidden;
  white-space: nowrap;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.oc--slide .oc--slide-item {
  display: inline-block;
  white-space: normal;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.oc--slide .oc--slide-item::-webkit-scrollbar{
  background: white;
  position: absolute;
  width: 3px;
  transition: all .3s ease-in-out;
}

.oc--slide .oc--slide-item::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.3);
  transition: all .3s ease-in-out;
}

.oc--slide .oc--slide-item:hover::-webkit-scrollbar-thumb{
  background: rgba(0,0,0, .6);
  border-radius: 5px;
}

.oc--slide .oc--slide-item::-webkit-scrollbar-track{
  background: white;
}

.oc--modal.fx .oc--modal-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.oc--modal.fx .oc--modal-dialog .oc--modal-content {
  top: 0;
  bottom: 0;
  -webkit-transform: translate(0%);
          transform: translate(0%);
}

.oc--modal.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.oc--modal.show .oc--modal-dialog {
  top: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.oc--modal.fx-top .oc--modal-dialog {
  width: 100% !important;
  top: -10px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--modal.fx-top .oc--modal-dialog .oc--modal-content {
  top: 0;
  -webkit-transform: translate(0%);
          transform: translate(0%);
}

.oc--modal.fx-top.show .oc--modal-dialog {
  top: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--modal.fx-bottom .oc--modal-dialog {
  bottom: -10px;
  width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--modal.fx-bottom .oc--modal-dialog .oc--modal-content {
  bottom: 0;
  top: unset;
  -webkit-transform: translate(0%);
          transform: translate(0%);
}

.oc--modal.fx-bottom.show .oc--modal-dialog {
  bottom: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--modal.fx-right {
  margin: 0;
  padding: 0;
}

.oc--modal.fx-right .oc--modal-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  transform: translate(100%, 0);
  right: 0;
  top: 0;
  bottom: 0;
  left: unset;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--modal.fx-right .oc--modal-dialog .oc--modal-content {
  top: 0;
  bottom: 0;
  -webkit-transform: translate(0%);
          transform: translate(0%);
}

.oc--modal.fx-right.show .oc--modal-dialog {
  right: 0;
  transform: translate(0, 0);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--modal.fx-left {
  margin: 0;
  padding: 0;
}

.oc--modal.fx-left .oc--modal-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  left: -20px;
  top: 0;
  bottom: 0;
  right: unset;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--modal.fx-left .oc--modal-dialog .oc--modal-content {
  top: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0%);
          transform: translate(0%);
}

.oc--modal.fx-left.show .oc--modal-dialog {
  left: 0;
  transform: translate(0, 0);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--modal.xl .oc--modal-dialog {
  width: 1140px;
}

.oc--modal.lg .oc--modal-dialog {
  width: 800px;
}

.oc--modal.sm .oc--modal-dialog {
  width: 300px;
}

.oc--modal.primary .oc--modal-content {
  border-top: 5px solid #3f51b5;
}

.oc--modal.success .oc--modal-content {
  border-top: 5px solid #4caf50;
}

.oc--modal.info .oc--modal-content {
  border-top: 5px solid #00bcd4;
}

.oc--modal.warning .oc--modal-content {
  border-top: 5px solid #ff9800;
}

.oc--modal.danger .oc--modal-content {
  border-top: 5px solid #ef5350;
}

.oc--btn-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.oc--btn-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: inline-block;
  cursor: pointer;
  outline: none !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 3px;
  color: #00bcd4;
  border: 1px solid;
  background: transparent;
  padding: 4px 15px 5px;
}

.oc--btn-close:focus {
  -webkit-box-shadow: 0 0 0 3px #dc35456e;
          box-shadow: 0 0 0 3px #dc35456e;
}
.oc--btn-close::before {
  content: "\f057";
  font-family: "FontAwesome";
  margin-right: 5px;
  font-size: 16px;
}

.oc--btn-next:focus {
  -webkit-box-shadow: 0 0 0 3px #dc35456e;
          box-shadow: 0 0 0 3px #dc35456e;
}

.oc--btn-save {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  outline: none !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 3px;
  color: #4caf50;
  border: 1px solid;
  background: transparent;
  padding: 0 10px;
}

.oc--btn-save::before {
  content: "\f0c7";
  font-family: "FontAwesome";
  margin-right: 5px;
  font-size: 16px;
}

.oc--btn-save:focus {
  -webkit-box-shadow: 0 0 0 3px #4caf507a;
          box-shadow: 0 0 0 3px #4caf507a;
}

.oc--btn-ok {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: inline-block;
  cursor: pointer;
  outline: none !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 3px;
  color: #00bcd4;
  border: 1px solid;
  background: transparent;
  padding: 4px 15px 5px;
}

.oc--btn-ok::before {
  content: '\2714 \fe0e';
  font-family: "FontAwesome";
  margin-right: 5px;
  font-size: 16px;
}

.oc--btn-ok:focus {
  -webkit-box-shadow: 0 0 0 3px #4caf507a;
          box-shadow: 0 0 0 3px #4caf507a;
}

.oc--btn-next {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: inline-block;
  cursor: pointer;
  outline: none !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 3px;
  color: #00bcd4;
  border: 1px solid;
  background: transparent;
  padding: 4px 15px 5px;
}

.oc--btn-next::after {
  content: '\00bb';
  /* font-family: "FontAwesome"; */
  margin-left: 5px;
  font-size: 16px;
}

.oc--btn-next:focus {
  -webkit-box-shadow: 0 0 0 3px #3f51b573;
          box-shadow: 0 0 0 3px #3f51b573;
}

.oc--btn-pre {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  display: inline-block;
  cursor: pointer;
  outline: none !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 3px;
  color: #00bcd4;
  border: 1px solid;
  background: transparent;
  padding: 4px 15px 5px;
}

.oc--btn-pre::before {
  content: '\00ab';
  margin-right: 5px;
  font-size: 16px;
}

.oc--btn-pre::after {
  content: 'previous';
  margin-left: 5px;
  font-size: 16px;
}

.oc--btn-pre:focus {
  -webkit-box-shadow: 0 0 0 3px #3f51b573;
          box-shadow: 0 0 0 3px #3f51b573;
}

/*@media only screen and (max-width: 1200px) {
  .oc--modal.xl .oc--modal-dialog {
    width: 800px;
  }
}

@media only screen and (max-width: 990px) {
  .oc--modal.lg .oc--modal-dialog {
    width: 500px;
  }
  .oc--modal.xl .oc--modal-dialog {
    width: 500px;
  }
}

@media only screen and (max-width: 570px) {
  .oc--modal-dialog {
    right: 10px !important;
    left: 10px !important;
    width: auto !important;
    -webkit-transform: translate(0%, 0%) !important;
            transform: translate(0%, 0%) !important;
  }
}*/

.test-header {
  height: 60px;
  background: #616161;
  -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  top: 0;
}

.body-content {
  height: 100%;
}
.oc--main-info {
  background: #fff;
  display: flex;
  flex-direction: row;
  height: 100%;
  overflow-y: auto;
}

.oc--main-info .oc--main-info-left {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding: 20px;
}
.oc--main-info .oc--main-info-left .scroll {
  position: absolute;
  bottom: 20px;
  top: 189px;
  overflow-y: auto;
}


.oc--main-info .oc--main-info-left .scroll::-webkit-scrollbar{
  background:white;
  position:absolute;
  width:3px;
  transition:all .3s ease-in-out;
}

.oc--main-info .oc--main-info-left .scroll::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.3);
  transition:all .3s ease-in-out;
}
.oc--main-info .oc--main-info-left .scroll:hover::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.6);
  border-radius:5px;
}

.oc--main-info .oc--main-info-left .scroll::-webkit-scrollbar-track{
 background:white;
}


.oc--fieldset {
    margin-bottom: 30px;
    border: unset;
    border-radius: unset;
    padding: unset;
    padding-top: 20px;
}

.oc--dtl-name{
    font-size: 16px;
    font-weight: 700;
    background: white;
    padding-top: 0px;
}

.oc--fieldset legend {
  display: inline-block;
  width: unset;
  padding-right: 5px;
  margin-left: -5px;
  text-transform: uppercase;
  font-size: 13px;
  color: #6c757d;
}

.oc--fieldset p {
  font-size: 13px;
}

.oc--fieldset.hr {
  border-top: 1px solid #ccc;
  height: 100%;
  margin-bottom: 0;
  padding-bottom: 20px;
  position: relative;
}

.oc--fieldset.center legend {
  padding-left: 5px;
  margin-left: auto;
  margin-right: auto;
}

.oc--fieldset.right legend {
  padding-right: 0;
  padding-left: 5px;
  margin-left: auto;
  margin-right: 0;
}

.oc--main-info-right {
  padding: 30px 20px 20px 20px;
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: column;
  position: relative;
}

.oc--main-info-right .labelheader{
  height: 60px;
  display: flex;
  position: relative;
  align-items: center;
  align-content: center;
}

.oc--main-info-right .back{
  background: url(../icon/left-arrow.png);
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, .2);
  transition: all .2s ease-in-out;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
}


.oc--main-info-right .back:hover,
.oc--main-info-right .back:active,
.oc--main-info-right .back:focus {
  background: url(../icon/left-arrow-filled.png);
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  box-shadow: -1px 1px 4px rgba(0, 0, 0, .2);
  transition: all .2s ease-in-out;
}

.oc--title-1 {
  font-size: 16px;
  font-weight: 700;
}

.oc--title-1 small {
  font-size: 13px;
  display: block;
}

.oc--title-2 {
  font-size: 16px;
  font-weight: 700;
}

.oc--title-2 small {
  font-size: 13px;
  display: block;
}

.oc--m-img {
  position: relative;
  width: 188px;
  height: 170px;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-content: center;
  align-items: center;
}

.oc--m-img .img {
  width: 150px;
  height: 150px;
  margin: auto;
}

.oc--m-img .img .wra-img {
  border: 1px solid #ccc;
  border-radius: 50%;
  padding: 4px;
  box-shadow: -1px 1px 4px 1px rgba(0, 0, 0, 0.1);
}

.oc--m-img .img .wra-img img {
  width: 140px;
  height: 140px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}


.oc--m-img .oc--img-action {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #00000045;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.oc--m-img .oc--img-action a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  background: black;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 30px;
  width: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border-radius: 50px;
  margin-right: 5px;
  border: 1px solid #fff;
  opacity: .7;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.oc--m-img .oc--img-action a:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.oc--m-img:hover .oc--img-action {
  visibility: visible;
  opacity: 1;
}

.oc--section .oc--title {
  text-transform: uppercase;
  font-size: 13px;
  color: #6c757d;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 20px;
}

.my-tab {
  border-bottom: 1px solid #ccc;
}

.my-tab li {
  list-style-type: none;
  display: inline;
  font-size: 13px;
  padding: 1px 10px;
}

.my-tab li.active {
  border-bottom: 3px solid #007bff;
}

.oc--tbl-info {
  max-width: 100%;
  width: auto;
}

.oc--tbl-info tr th {
  color: #545b62;
  font-weight: 600;
  font-size: 13px;
  padding-bottom: 10px;
  padding-right: 10px;
}

.oc--tbl-info tr th::after {
  content: ':';
}

.oc--tbl-info tr td {
  font-size: 13px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.oc--tbl-info tr td.empty {
  font-style: italic;
}

.oc--info-tab-nav {
  /* margin: 0;
  padding: 0; */
}

.oc--info-tab-nav li {
  list-style: none;
  width: 100%;
  -webkit-transition: .3s;
  transition: .3s;
}

.oc--info-tab-nav li a {
  text-decoration: none;
  width: 100%;
  display: block;
  font-weight: 500;
  color: #495057;
  text-align: left;
  padding: 10px 15px;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 13px;
  font-style: italic;
}

.oc--info-tab-nav li:hover {
  background: #e9ecef;
}

.oc--info-tab-nav li.active {
  background: var(--oc-border-grey);
  -webkit-box-shadow: inset 4px 0 var(--main-theme-color);
          box-shadow: inset 4px 0 var(--main-theme-color);
}

.oc--info-tab {
  font-size: 13px;
  position: relative;
  height: 100%;
}

.oc--info-tab .oc--info-tab-item {
  height: 0;
  overflow: hidden;
}

.oc--info-tab .oc--info-tab-item.active {
  height: 100%;
  -webkit-transition: width .3s ease, height .3s ease;
  transition: width .3s ease, height .3s ease;
  overflow-y: auto;
  position: absolute;
  top: 0;
  bottom: 20px;
  width: 100%;
}

.oc--info-tab .oc--info-tab-item.active::-webkit-scrollbar{
  background:WHITE;
  position:absolute;
  width:3PX;
  transition:all .3S ease-in-out;
}

.oc--info-tab .oc--info-tab-item.active::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.3);
  transition:all .3S ease-in-out;
}
.oc--info-tab .oc--info-tab-item.active:hover::-webkit-scrollbar-thumb{
  background:rgba(0,0,0,.6);
  border-radius:5px;
}

.oc--info-tab .oc--info-tab-item.active::-webkit-scrollbar-track{
 background:white;
}

.oc--info-tab .oc--info-tab-item.active .fieldset-content{
  height: 100%;
  width: 100%;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

.oc--info-tab .oc--info-tab-item.active .fieldset-content::-webkit-scrollbar{
	background:transparent(0);
	position: absolute;
	width: 3px;
	height: 3px;
	transition: all .3s ease-in-out;
}
  
.oc--info-tab .oc--info-tab-item.active .fieldset-content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,.3);
  transition: all .3s ease-in-out;
}

.oc--info-tab .oc--info-tab-item.active .fieldset-content:hover::-webkit-scrollbar-thumb{
  background: rgba(0,0,0, .6);
  border-radius: 5px;
}

.oc--info-tab .oc--info-tab-item.active .fieldset-content::-webkit-scrollbar-track{
  background: transparent(0);
}

.custom-field {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 10px;
}

.custom-field .title {
  font-weight: 600;
  padding: 3px 0 3px 0;
  width: fit-content;
  margin-top: auto;
  margin-bottom: auto;
}

.custom-field .title::after{
  content: ':';
}

.custom-field .description {
  padding: 3px 0 3px 0;
  margin-top: auto;
  margin-bottom: auto;
}

.custom-field .description.empty {
  font-style: italic;
}

.oc--info-tab .detail-button {
  position: absolute;
  right: 10px;
  top: 40px;
  border-radius: 50%;
}

.oc--info-tab .detail-button .update {
  background: url(../icon/edit-100.png);
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  box-shadow: -1px 1px 1px rgba(0, 0, 0, .2);
  transition: all .2s ease-in-out;
  outline: none;
}

.oc--info-tab .detail-button:hover .update,
.oc--info-tab .detail-button .update:active,
.oc--info-tab .detail-button .update:focus {
  background: url(../icon/edit-filled-100.png);
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  box-shadow: -1px 1px 4px rgba(0, 0, 0, .2);
  transition: all .2s ease-in-out;
}

.oc--icon-remove {
  border-radius: 50px;
  height: 20px;
  width: 20px;
  font-size: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-left: 5px;
  color: #ced4da;
  -webkit-transition: .3s;
  transition: .3s;
}

.oc--icon-remove:hover {
  color: #545b62;
}

.oc--icon-remove::before {
  content: '\00d7';
}

.oc--is-affix {
  position: -webkit-sticky;
  position: sticky;
}

.oc--pnl-flt {
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
}

.oc--pnl-flt .oc--pnl-flt-header {
  border-bottom: 1px solid #ccc;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
}

.oc--pnl-flt .oc--pnl-flt-header .oc--pnl-flt-title {
  padding: 0 20px;
  font-size: 20px;
  color: #000000;
  font-weight: 500;
}

.oc--pnl-flt .oc--pnl-flt-header .oc--pnl-flt-title small {
  display: block;
  font-size: 12px;
}

.oc--pnl-flt .oc--pnl-flt-header .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.oc--pnl-flt .oc--pnl-flt-header .right .oc--pnl-flt-icon {
  height: 58px;
  width: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #6c757d;
  cursor: pointer;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.oc--pnl-flt .oc--pnl-flt-header .right .oc--pnl-flt-icon:hover {
  background: #dee2e678;
}

.oc--pnl-flt .oc--pnl-flt-body {
  background: #fff;
}

.oc--m-flt{
    position: relative;
    z-index: 10;
}

.oc--m-flt .oc--flt-m-item {
  position: relative;
  background: #f8f9fa;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  padding-left: 40px;
  min-height: 40px;
}

.oc--m-flt .oc--flt-m-item .oc--btn-flt {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  font-size: 18px;
  color: var(--oc-grey);
}

.oc--m-flt .oc--flt-m-item .oc--btn-flt:hover{
    color: var(--oc-dark-grey);
}

.oc--m-flt .oc--flt-m-item .oc--flt-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #ccc;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 1px 3px 5px;
  border-radius: 50px;
  background: #fff;
  white-space: nowrap;
  margin-bottom: 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--m-flt .oc--flt-m-item .oc--flt-item:hover {
  background: rgba(0, 0, 0, 0.075);
}

.oc--m-flt .oc--m-flt-dlg {
  background: #fff;
  display: none;
}

.oc--m-flt .oc--m-flt-dlg .oc--flt-dlg-header {
  background: unset;
  padding: 5px 20px;
}

.oc--m-flt .oc--m-flt-dlg .oc--flt-dlg-header .oc--flt-dlg-title {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}

.oc--m-flt .oc--m-flt-dlg .oc--flt-dlg-header .oc--flt-dlg-title small {
  font-size: 12px;
  display: block;
}

.oc--m-flt .oc--m-flt-dlg .oc--flt-dlg-body {
  padding: 5px 20px;
}

.oc--m-flt .oc--m-flt-dlg .oc--flt-dlg-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px;
}

.oc--m-flt .oc--m-flt-dlg.popup {
  position: absolute;
  margin-bottom: 20px;
  display: block;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  max-width: 100%;
  border-radius: 3px;
  -webkit-transform: scale(0);
          transform: scale(0);
  visibility: hidden;
  opacity: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--m-flt .oc--m-flt-dlg.popup.show {
  -webkit-transform: scale(1);
          transform: scale(1);
  visibility: visible;
  opacity: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media only screen and (max-width: 426px) {
  .oc--main-info {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.oc--m-card-view {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(6, 1fr);
  padding: 10px 10px;
}

.oc--short-card-view {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(10, 1fr);
  padding: 10px 10px;
}

.oc--long-card-view {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(8, 1fr);
  padding: 10px 10px;
}

.oc--doc-card-view {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(10, 1fr);
  padding: 10px 10px;
}

.oc--card-box, .oc--card-box-pop {
  position: relative;
  min-height: 50px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 5px -3px #0000004d;
          box-shadow: 2px 2px 5px -3px #0000004d;
  overflow: hidden;
}

.oc--doc-card-box {
  position: relative;
  min-height: 50px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 5px -3px #0000004d;
          box-shadow: 2px 2px 5px -3px #0000004d;
  overflow: hidden;
}

.oc--card-box-pop {
  cursor: pointer;
}

.oc--doc-card-box.hover{
  cursor: pointer;
}

.no-card-view {
  text-align: center;
  padding: 15px;
  color: var(--them-color1);
}

.oc--doc-description .description,
.oc--doc-title .description {
  background: #0aa9e8;
  color: white;
  border-radius: 2px;
  padding: .2em 1em;
  opacity: 0.8;
  width: fit-content;
}

.oc--card-box-pop:hover, .oc--card-box-pop:active,
.oc--card-box:hover, .oc--card-box:active,
.oc--doc-card-box:hover, .oc--doc-card-box:active {
  box-shadow: -1px 2px 4px 1px rgba(0,0,0,0.2);
}

.oc--doc-card-box .oc--doc-widget .oc--doc-avata img {
  transform: scale(1);
  opacity: .5;
  transition: all .3s ease-in-out;
}

.oc--doc-card-box .oc--doc-widget .oc--doc-avata img:hover,
.oc--doc-card-box .oc--doc-widget .oc--doc-avata img:active,
.oc--doc-card-box.hover:hover .oc--doc-widget .oc--doc-avata img,
.oc--doc-card-box.hover:active .oc--doc-widget .oc--doc-avata img {
  cursor: pointer;
  transform: scale(1.1);
  opacity: .7;
  transition: all .3s ease-in-out;
}

/* card view control */
.oc--card-box-pop .card-box-control {
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
  padding: 0;
  display: flex;
  opacity: 0;
  transform: scale(0, 1);
  transform-origin: left;
}

.oc--card-box-pop:hover .card-box-control, .oc--card-box-pop:focus .card-box-control {
  opacity: 1;
  transform: scale(1);
  transition: opacity .2s ease-in-out, transform .3s ease-in-out;
}

.oc--card-box-pop .card-box-control ul.card-view-control {
  list-style: none;
  white-space: nowrap;
  display: flex;
  align-content: center;
  align-items: center;
  margin: 0 auto;
}

.oc--card-box-pop .card-box-control ul.card-view-control li {
  display: inline-flex;
  font-size: 1.5em;
  padding: 2px;
}

.oc--card-box-pop .card-box-control ul.card-view-control li a {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: inherit;
  transition: all .3s ease-in-out;
  position: relative;
}
.oc--card-box-pop .card-box-control ul.card-view-control li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: inline-block;
  background: rgba(0, 0, 0, .1);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
}

.oc--card-box-pop .card-box-control ul.card-view-control li:hover a::after {
  transform: scale(1.1);
  opacity: 1;
  transition: opcacity .1s ease-in-out, transform .2s ease-in-out;
}

.oc--card-box-pop .card-box-control ul.card-view-control li a:active {
  transform: scale(.9);
  opacity: 1;
  transition: opcacity .1s ease-in-out, transform .2s ease-in-out;
}

.oc--card-box-pop .card-box-control ul.card-view-control li a.add {
  background: url(../icon/plus-100.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.oc--card-box-pop .card-box-control ul.card-view-control li:hover a.add {
  background: url(../icon/plus-filled-100.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.oc--card-box-pop .card-box-control ul.card-view-control li a.delete {
  background: url(../icon/delete-100.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.oc--card-box-pop .card-box-control ul.card-view-control li:hover a.delete {
  background: url(../icon/delete-filled-100.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.oc--card-box-pop .card-box-control ul.card-view-control li a.update {
  background: url(../icon/edit-100.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.oc--card-box-pop .card-box-control ul.card-view-control li:hover a.update {
  background: url(../icon/edit-filled-100.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.oc--card-box-pop .card-box-control ul.card-view-control li a.view {
  background: url(../icon/plus-100.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.oc--card-box-pop .card-box-control ul.card-view-control li:hover a.view {
  background: url(../icon/plus-filled-100.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.oc--card-box-pop .card-box-control ul.card-view-control li a.configure {
  background: url(../icon/plus-100.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.oc--card-box-pop .card-box-control ul.card-view-control li:hover a.configure {
  background: url(../icon/plus-filled-100.png);
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.oc--action {
  position: absolute;
  right: 1px;
  top: 5px;
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border-radius: 50px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background: rgba(255, 255, 255, 0);
  z-index:1;
}

.oc--action:hover {
  background: #dedfe6;
}

.oc--action::after {
  content: '\2026';
  height: 0;
  font-size: 20px;
  margin-left: 44px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #7d7e7f;
}

.oc--action .oc--action-dlg {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  position: absolute;
  padding: 10px 0;
  min-width: 100px;
  border: 1px solid #ccc;
  right: 13px;
  top: 25px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 2px 2px 5px -4px #0000006b;
          box-shadow: 2px 2px 5px -4px #0000006b;
  z-index: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--action .oc--action-dlg li {
  list-style: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.oc--action .oc--action-dlg li:hover {
  background: #dfe2e4;
}

.oc--action .oc--action-dlg li a {
  text-decoration: none;
  color: #6a6a6a;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.oc--action .oc--action-dlg li a i {
  width: 20px;
  text-align: center;
}

.oc--profile-widget-one {
  padding: .8rem 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 5fr;
  grid-template-columns: 3fr 5fr;
  grid-gap: 10px;
}

.oc--card-seperate {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 4px;
}

.oc--card-h-seperate {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin: 3px 0;
}

.oc--action.show .oc--action-dlg {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.oc--profile-widget {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8rem 0.8rem;
}

.oc--doc-widget {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0 0.8rem 0rem;
}

.oc--tools {
  position: absolute;
}

.oc--avata {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-margin-after: .5rem;
          margin-block-end: .5rem;
  overflow: hidden;
}

.oc--avata img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.oc--doc-avata {
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0px 0px 0px;
}

.oc--doc-avata img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.oc--doc-card-box:hover .oc--doc-widget .oc--action,
.oc--doc-card-box:active .oc--doc-widget .oc--action {
  background: #dedfe6;
  transition: background .2s ease-in-out;
}

.oc--doc-card-box .action-btn {
  display: flex;
  align-items: center;
  align-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 9rem;
  line-height: 9rem;
  font-weight: 100;
  text-decoration: none;
  color: var(--color-primary);
}
.oc--doc-card-box:hover .action-btn,
.oc--doc-card-box:active .action-btn {
  text-shadow: -2px 2px 2px rgba(0,0,0, .2);
}
.oc--doc-card-box .action-btn .action-text {
  margin-left: auto;
  margin-right: auto;
  margin-top: -30px;
}

.oc--doc-title {
  text-align: center;
  font-size: .8rem;
  margin-block-end: 6px;
  display: block;
  padding-left: 5px;
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.oc--doc-description {
  text-align: center;
  display: block;
  padding-left: 5px;
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.oc--user-name {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 8px;
          margin-block-end: 8px;
  font-weight: 400;
  text-align: center;
  font-size: 0.9rem;
}
.oc--card-title {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 6px;
          margin-block-end: 6px;
  font-weight: 400;
  text-align: center;
  font-size: 0.9rem;
}
.oc--card-subtitle {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0px;
          margin-block-end: 0px;
  font-weight: 400;
  text-align: center;
  font-size: 0.7rem;
}

.oc--card-description {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0px;
          margin-block-end: 0px;
  font-weight: 400;
  text-align: center;
  font-size: 0.65rem;
}

.oc--card-l-title {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 6px;
          margin-block-end: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}
.oc--user-name.small-name {
  font-size: 1.15rem;
}

.oc--btn-view {
  position: absolute;
  display: block;
  text-align: right;
  right: 15px;
  bottom: 1rem;
}

.oc--pro-widget {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8rem 0.8rem;
}

.oc--th {
  display: block;
  -webkit-margin-before: 0px;
  margin-block-start: 0px;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 14px;
}

.oc--td {
  display: block;
  -webkit-margin-before: 0;
  margin-block-start: 0px;
  -webkit-margin-after: 5px;
  margin-block-end: 5px;
  line-height: 12px;
  font-weight: 400;
  font-size: 0.65rem;
}

.oc--td:last-child {
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

.oc--card-details{
  display: grid;
  grid-template-columns: 3fr 4fr;
  grid-row-gap: 3px;
  grid-column-gap: 6px;
}

.txt-title {
  display: block;
  font-weight: 500;
  font-size: 0.65rem;
  line-height: 14px;
  text-align: right;
}

.txt-description {
  display: block;
  line-height: 14px;
  font-weight: 400;
  font-size: 0.65rem;
}

.oc--affix{
    /* position: sticky; */
}

@media only screen and (max-width: 1440px) {
  .oc--m-card-view {
    grid-template-columns: repeat(4, 1fr);
  }
  .oc--short-card-view {
    grid-template-columns: repeat(6, 1fr);
  }
  .oc--long-card-view {
    grid-template-columns: repeat(6, 1fr);
  }
  .oc--doc-card-view {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media only screen and (max-width: 1200px) {
  .oc--m-card-view {
    grid-template-columns: repeat(3, 1fr);
  }
  .oc--short-card-view {
    grid-template-columns: repeat(6, 1fr);
  }
  .oc--long-card-view {
    grid-template-columns: repeat(5, 1fr);
  }
  .oc--doc-card-view {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media only screen and (max-width: 1024px) {
  .oc--m-card-view {
    grid-template-columns: repeat(3, 1fr);
  }
  .oc--short-card-view {
    grid-template-columns: repeat(4, 1fr);
  }
  .oc--long-card-view {
    grid-template-columns: repeat(4, 1fr);
  }
  .oc--doc-card-view {
    grid-template-columns: repeat(4, 1fr);
  }
}


@media only screen and (max-width: 570px) {
  .oc--m-card-view {
    grid-template-columns: repeat(2, 1fr);
  }
  .oc--short-card-view {
    grid-template-columns: repeat(3, 1fr);
  }
  .oc--long-card-view {
    grid-template-columns: repeat(3, 1fr);
  }
  .oc--doc-card-view {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 425px) {
  .oc--m-card-view {
    grid-template-columns: repeat(1, 1fr);
  }
  .oc--short-card-view {
    grid-template-columns: repeat(2, 1fr);
  }
  .oc--long-card-view {
    grid-template-columns: repeat(2, 1fr);
  }
  .oc--doc-card-view {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*# sourceMappingURL=main.css.map */