/* ---------------------------------------------------------------------- 
>>> TABLE OF CONTENT
-------------------------------------------------------------------------
1 - Basic Elements & Classes
2 - table custom
3 - textbox custom
4 - form custom
5 - application custom
6 - panel custom
7 - loader custom
8 - menu custom
9 - links custom
10 -  etc
/* ---------------------------------------------------------------------- */


/*  1 - Basic Elements & Classes
/* ---------------------------------------------------------------------- */

/* Effect 9: second text and borders */
nav.links-fixed {
    text-align: center;
}

nav.links-fixed a {
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700 !important;
    letter-spacing: 1px;
    margin: 0px 5px;
    outline: medium none;
    position: relative;
    text-decoration: none;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.cl-effect-9-fixed a {
    margin: 0 2px;
    padding: 3px 5px;
    font-weight: 700 !important;
}

/* .cl-effect-9-fixed a::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: red;
    content: '';
    opacity: 1;
    -webkit-transition: opacity 0.3s, height 0.3s;
    -moz-transition: opacity 0.3s, height 0.3s;
    transition: opacity 0.3s, height 0.3s;
} */

.cl-effect-9-fixed a::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: red;
    content: '';
    opacity: 0.2;
    -webkit-transition: opacity 0.3s, height 0.3s;
    -moz-transition: opacity 0.3s, height 0.3s;
    transition: opacity 0.3s, height 0.3s;
}

.cl-effect-9-fixed a::after {
    top: 100%;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
}

.cl-effect-9-fixed a span:first-child {
    z-index: 2;
    display: block;
    font-weight: 600;
}

.cl-effect-9-fixed a span:last-child {
    z-index: 1;
    display: block;
    padding: 8px 0 0 0;
    color: rgba(0, 0, 0, 0.4);
    text-shadow: none;
    text-transform: none;
    font-size: 0.75em;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}

.cl-effect-9-fixed a:hover::before,
.cl-effect-9-fixed a:focus::before {
    height: 6px;
}

.cl-effect-9-fixed a:hover::before,
.cl-effect-9-fixed a:hover::after,
.cl-effect-9-fixed a:focus::before,
.cl-effect-9-fixed a:focus::after {
    color: yellow;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}

.cl-effect-9-fixed a:hover span:last-child,
.cl-effect-9-fixed a:focus span:last-child {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}

.cl-effect-9-fixed a:hover span:first-child,
.cl-effect-9-fixed a:focus span:first-child {
    color: yellow;
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}

.cl-effect-9-fixed a.selected {
    color: yellow !important;
    font-weight: 600;
}

.cl-effect-9-fixed a.selected span:last-child {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}

.cl-effect-9-fixed a.selected::after {
    color: yellow;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}


.navMenu {
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.navMenu a {
    color: #f6f4e6;
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    width: 80px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.navMenu a:hover {
    color: #fddb3a;
}

.navMenu .dot {
    width: 6px;
    height: 6px;
    background: #fddb3a;
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.navMenu a:nth-child(1):hover~.dot {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu a:nth-child(2):hover~.dot {
    -webkit-transform: translateX(110px);
    transform: translateX(110px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu a:nth-child(3):hover~.dot {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu a:nth-child(4):hover~.dot {
    -webkit-transform: translateX(285px);
    transform: translateX(285px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.text-light-yellow {
    color: yellow !important;
    font-size: 1em !important;
}

.text-light-green {
    color: rgb(126, 190, 30) !important;
    font-size: 1.1em !important;
}


.nav-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px 30px 20px;
    display: flex;
    align-items: center;
    transition: 0.3s ease-out;
    backdrop-filter: blur(8px) brightness(1.2);
    -webkit-backdrop-filter: blur(8px) brightness(1.2);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);

    color: white;
    font-size: 16px;

    @media (min-width: 640px) {
        padding: 16px 50px 30px 50px;
    }
}

.list {
    list-style-type: none;
    margin-left: auto;
    display: none;

    @media (min-width: 640px) {
        display: flex;
    }

    li {
        margin-left: 20px;
    }
}

.top {
    width: 100%;
    height: 5px;
}

h2.cells {
    padding: 5px;
    color: #FFF;
    font-size: 18px;
    margin-bottom: auto;
    margin-top: auto;
}

h1.style1 {
    font-family: Georgia, sans-serif;
    font-size: 5em;
    letter-spacing: -2px;
}

h1.style-zero {
    border: 0;
    height: 0px;
    background: none;
    background-image: none;
}

.text-dark-grey {
    color: #a3a3a4 !important;
}

.width-10-percentage {
    width: 10%;
}

.width-15-percentage {
    width: 15%;
}

.width-20-percentage {
    width: 20%;
}

.width-28-percentage {
    width: 28%;
}

.width-16-percentage {
    width: 16%;
}

.width-25-percentage {
    width: 25%;
}

.width-30-percentage {
    width: 30%;
}

.width-40-percentage {
    width: 40%;
}

.width-45-percentage {
    width: 45%;
}

.width-50-percentage {
    width: 50%;
}

.width-55-percentage {
    width: 55%;
}


.width-60-percentage {
    width: 60%;
}

.width-70-percentage {
    width: 70%;
}

.width-80-percentage {
    width: 80%;
}

.width-5-percentage {
    width: 5%;
}

.width-100 {
    width: 100px !important;
}

.width-80 {
    width: 80px !important;
}

.text-custom-24 {
    font-size: 18px !important;
}

.label-grey {
    background-color: #d6d5d5;
}

.label-purple {
    background-color: #9A89B5;
}

.label-azure {
    background-color: #5B9BD1;
}

.height-500 {
    height: 500px !important;
}

.height-250 {
    height: 250px !important;
}

.height-400 {
    height: 400px !important;
}

.app-body {
    padding: 0px 15px;
    color: #8e8e93;
}

.table-text {
    font-size: 85% !important;
    color: #fff;
    padding: 0.2em 0.2em !important;
}

.card-header-primary {
    background: linear-gradient(60deg, #ab47bc, #7b1fa2);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(156, 39, 176, .6);
}

.card-header-danger {
    background: linear-gradient(60deg, #ef5350, #d32f2f);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(244, 67, 54, .6);
}

span.vertical-label {
    writing-mode: tb-rl;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(90deg);
    transform: rotate(180deg);
    white-space: nowrap;
    display: block;
    bottom: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "myriad Pro";
}

.text-wrap {
    word-break: break-word !important;
    word-break: break-all !important;
    white-space: normal !important;
    text-align: left !important;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgb(54, 128, 4);
    text-decoration-thickness: 3px;
}

.label-black {
    font-weight: 700;
    font-size: 1.1em;
    color: rgb(56, 0, 209);
}

.label-darkred {
    color: rgb(20, 115, 240);
}

.label-thick {
    font-weight: 700;
    font-size: 1.1em;
    color: rgb(231, 17, 17);
}

.label-subthick {
    font-weight: 700;
    font-size: 1.1em;
}

.width-200 {
    font-size: 1.0em;
    font-weight: 700;
    padding: 0.4em 0.6em !important;
    overflow-wrap: normal !important;
    overflow-wrap: break-word !important;
    overflow-wrap: anywhere !important;
}

.newlabel-edit {
    font-size: 95%;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    white-space: break-spaces;
    vertical-align: baseline;
    border-radius: .0em;
    overflow-wrap: normal !important;
    overflow-wrap: break-word !important;
    overflow-wrap: anywhere !important;
}

.remove-style td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

.btn-transparent {
    background: transparent;
    border: transparent;
}

.remove-red td {
    color: red;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

.span-underline {
    border-bottom: 2px solid #1192c5
}

.span-redunderline {
    border-bottom: 2px solid #f33e06
}

.animate-show-hide.ng-hide {
    opacity: 0;
}

.animate-show-hide.ng-hide-remove {
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
}

.a-btn-icon-db {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 50px;
    border-left: 1px transparent #cfcfcf;
    /* -webkit-box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset;
    -moz-box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset;
    box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset; */
}

.border-left {
    border-left: 1px transparent #cfcfcf !important;
}

.a-btn-icon-db span {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -15px 0px 0px -15px;
    background: url(../images/icons/info-db.png) no-repeat center center;
    -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.a-btn-icon-db:hover span {
    opacity: 1;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.a-btn-icon-assign {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 50px;
    border-left: 1px transparent #cfcfcf;
    /* -webkit-box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset;
    -moz-box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset;
    box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset; */
}

.a-btn-icon-assign span {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -15px 0px 0px -15px;
    background: url(../images/icons/icons8-dynamic-links-48.png) no-repeat center center;
    -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.a-btn-icon-assign:hover span {
    opacity: 1;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.a-btn-icon-check {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 50px;
    border-left: 1px transparent #cfcfcf;
    /* -webkit-box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset;
    -moz-box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset;
    box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset; */
}

.a-btn-icon-check span {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -15px 0px 0px -15px;
    background: url(../images/icons/check_mini_orange.png) no-repeat center center;
    -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.a-btn-icon-check:hover span {
    opacity: 1;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.a-btn-icon-trash {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 50px;
    border-left: 1px solid #cfcfcf;
    -webkit-box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset;
    -moz-box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset;
    box-shadow: 1px 0px 1px rgba(255, 255, 255, 0.4) inset;
}

.a-btn-icon-trash span {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -15px 0px 0px -15px;
    background: url(../images/icons/trash.png) no-repeat center center;
    -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.a-btn-icon-trash:hover span {
    opacity: 1;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.a-btn-fix .a-btn-slide-text {
    position: absolute;
    font-size: 18px;
    top: 0px;
    left: 5px;
    color: #6d954e;
    opacity: 0;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.4);
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.a-btn-fix>img {
    width: 55px
}

.a-btn-icon-view span {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -15px 0px 0px -15px;
    background: url(../images/icons/down-arrow.png) no-repeat center center;
    -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset, 0px 1px 2px rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.a-btn-icon-view:hover span {
    opacity: 1;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.assign-selected span {
    background: #fff url(../images/icons/check_mini_black.png) no-repeat center center;
    opacity: 1.0;
}

.label-theo-mono1 {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABNCAIAAADo7ZnJAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQYlXWPyRGAMAwDd1wwHVADJS+POERk4OVD1mGO8yq1wFIKLXHsJLDGH8wSou8q0bfGxplYcpaHRerG/J/zS/edLTnrjvDo7PHv1Nhy3lZMnHg0MO2JAAAAAElFTkSuQmCC);
    background-color: #566171;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6e7d8f), color-stop(1, #404854));
    background-image: -webkit-linear-gradient(top, #6e7d8f, #404854);
    background-image: -moz-linear-gradient(top, #6e7d8f, #404854);
    background-image: -o-linear-gradient(top, #6e7d8f, #404854);
    background-image: linear-gradient(#6e7d8f, #404854);
}

.label-theo-mono2 {
    background-color: #566171;
}

.text-theo-mono1 {
    color: #566171;
}

.text-underline {
    text-decoration: underline;
}

.text-underline-blue {
    text-decoration: underline;
    text-decoration-color: rgb(102 111 240);
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}


/* icon pc menus */

.icon-pclist::before {
    content: "\e691";
}

.icon-pcsize::before {
    content: "\e658";
}

.icon-pctype::before {
    content: "\e652";
}

.icon-pcfeature::before {
    content: "\e63d";
}

.icon-pcbrand::before {
    content: "\e6a0";
}

.icon-pcvendor::before {
    content: "\e68f";
}

.icon-pcunit::before {
    content: "\e6b6";
}

span.vertical-label {
    writing-mode: tb-rl;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(90deg);
    transform: rotate(180deg);
    white-space: nowrap;
    display: block;
    bottom: 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "myriad Pro";
}

.no-bg {
    background-color: none;
    border: none
}

.right-border {
    border-right: 1px solid #F8F8FF;
}

.check-nopad {
    margin-bottom: 2px !important;
    margin-top: 2px !important;
    padding-left: 0;
}

hr.type_5 {
    border: 0;
    height: 55px;
    background-image: url(../images/type_5.png);
    background-repeat: no-repeat;
}

hr.type_zero {
    border: 0;
    background-image: none;
}

.btn-transparent {
    background: none;
    border: none;
}

.notice {
    padding: 15px;
    background-color: #fafafa;
    border-left: 6px solid #7f7f84;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
}

.notice-sm {
    padding: 10px;
    font-size: 80%;
}

.notice-lg {
    padding: 35px;
    font-size: large;
}

.notice-success {
    border-color: #80D651;
}

.notice-success>strong {
    color: #80D651;
}

.notice-info {
    border-color: #45ABCD;
}

.notice-info>strong {
    color: #45ABCD;
}

.notice-warning {
    border-color: #FEAF20;
}

.notice-warning>strong {
    color: #FEAF20;
}

.notice-danger {
    border-color: #d73814;
}

.notice-danger>strong {
    color: #d73814;
}

.text-small {
    font-size: 12px !important
}


.text-10 {
    font-size: 10px !important
}


.text-12 {
    font-size: 12px !important
}

.text-14 {
    font-size: 14px !important
}

.text-16 {
    font-size: 16px !important
}

.text-very-small {
    font-size: 10px !important
}

.text-very-large {
    font-size: 16px !important
}

.text-16 {
    font-size: 18px !important
}

.text-exclusive-large {
    font-size: 3em !important
}

.text-8 {
    font-size: 8px !important
}

.card-header-primary {
    background: linear-gradient(60deg, #ab47bc, #7b1fa2);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(156, 39, 176, .6);
}

.card-header-green {
    background: linear-gradient(60deg, #04bd8f, #00703c);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(35, 205, 218, 0.6);
}

.card-header-danger {
    background: linear-gradient(60deg, #ef5350, #d32f2f);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(244, 67, 54, .6);
}

button.bstyle1 {
    --c: #fff;
    /* text color */
    background: linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p, 100%)/300% no-repeat, #E97F02;
    /* background color */
    color: #0000;
    border: none;
    transform: perspective(500px) rotateY(calc(20deg*var(--_i, -1)));
    text-shadow: calc(var(--_i, -1)* 0.08em) -.01em 0 var(--c), calc(var(--_i, -1)*-0.08em) .01em 2px #0004;
    outline-offset: .1em;
    transition: 0.3s;
}

button.bstyle1:hover,
button.bstyle1:focus-visible {
    --_p: 0%;
    --_i: 1;
}

button.bstyle1:active {
    text-shadow: none;
    color: var(--c);
    box-shadow: inset 0 0 9e9q #0005;
    transition: 0s;
}

.wrapper {
    display: inline-flex;
    list-style: none;
    padding-left: 10px;
}

.margin-top-25 {
    margin-top: 50px;
}

.wrapper .icon {
    position: relative;
    background: #1877F2;
    color: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon-fixed {
    position: relative;
    background: #1877F2;
    color: #ffffff;
    border-radius: 50%;
    padding: 5px;
    margin: 5px;
    width: 30px;
    height: 30px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background: #1877F2;
    color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background: #1DA1F2;
    color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #E4405F;
    color: #ffffff;
}

.wrapper .github:hover,
.wrapper .github:hover .tooltip,
.wrapper .github:hover .tooltip::before {
    background: #333333;
    color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #CD201F;
    color: #ffffff;
}

.header-cells {
    padding: 5px;
    color: #FFF;
    font-size: 14px;
    font-family: 'Kanit', sans-serif;
    margin-bottom: auto;
    margin-top: auto;
    padding: 10px
}

h2.header-cells {
    padding: 5px;
    color: #FFF;
    font-size: 24px;
    font-family: 'Kanit', sans-serif;
    margin-bottom: auto;
    margin-top: auto;
}

.tab-highlight {
    /* background-color: #58748B;*/
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 6px;
    top: -5px;
    position: relative;
    line-height: 30px;
    font-family: 'Kanit', sans-serif;
    color: white;
}

.top-line {
    width: 100%;
    height: 5px;
}

.pcustom {
    padding-bottom: 5px;
    font-family: 'Kanit', sans-serif;
    margin-bottom: auto;
    margin-top: auto;
    color: #fff;
    font-weight: 600;
    padding: 5px;
}

.timeline-item p {
    font-weight: 600;
}

.circle-img {
    width: 30px;
    height: 30px;
    overflow: hidden;
}

.circle-img img {
    height: 100%;
    transform: translateX(-50%);
    margin-left: 50%;
}

hr.type_7 {
    border: 0;
    height: 55px;
    background-image: url(images/type_7.png);
    background-repeat: no-repeat;
    background-position: center;
}

hr.style-one {
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.clip-check.check-sm2 label {
    margin-right: 15px;
    padding-left: 33px !important;
    line-height: 27px;
}

.clip-check.check-sm2 label:before {
    height: 22px;
    width: 22px;
    border-radius: 2px;
}

.clip-check.check-sm2 label:after {
    font-size: 12px;
    height: 22px;
    left: 5px;
    width: 22px;
}

.clip-check.check-sm2 input[type="checkbox"]:checked+label:before {
    border-width: 11px;
}

.clip-check.check-minism label {
    margin-right: 15px;
    padding-left: 33px !important;
    line-height: 27px;
}

.clip-check.check-minism label:before {
    height: 22px;
    width: 22px;
    border-radius: 2px;
}

.clip-check.check-minism label:after {
    font-size: 12px;
    height: 22px;
    left: 5px;
    width: 22px;
}

.clip-check.check-minism input[type="checkbox"]:checked+label:before {
    border-width: 11px;
}

.clip-check.check-minism input[type="checkbox"]>label span {
    font: 10px;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}

.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 25px;
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    font-size: 24px;
    line-height: 1.33;
    border-radius: 35px;
}

hr.style-eight {
    height: 5px;
    background: rgb(95, 95, 95);
    margin: 5px 0 15px 0;
    box-shadow: 0px 0px 4px 2px rgba(204, 204, 204, 1);
}

label.style1 {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
    /* Accessible outline */
    /* Remove comment to use */
    /* &:focus-within {
        outline: .125em solid $primary-color;
   }
    */
}

label.style1 input {
    position: absolute;
    left: -9999px;
}

label.style1 input:checked+span {
    background-color: #d6d6e5;
}

label.style1 input:checked+span:before {
    box-shadow: inset 0 0 0 0.4375em #00005c;
}

label.style1 span {
    font-size: 0.75em;
    display: flex;
    align-items: center;
    padding: 0.375em 0.75em 0.375em 0.375em;
    border-radius: 99em;
    transition: 0.25s ease;
}

label.style1 span:hover {
    background-color: #d6d6e5;
}

label.style1 span:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em #00005c;
}


/* .input-group .dropdown-menu>li>a {

    max-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    word-wrap: break-word !important;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
} */

/* style glyph */
.inner-addon {
    position: relative !important;
    /* z-index: 3 !important; */
}

.inner-addon .glyphicon {
    position: absolute !important;
    padding: 10px;
    pointer-events: none;
    z-index: 4 !important;
}


/* align glyph */

.left-addon .glyphicon {
    left: 0px;
}

.right-addon .glyphicon {
    right: 37px;
    top: -8px;
}


/*
   * Animation keyframes
   * Use transition opacity instead of keyframes?
   */

@keyframes loading {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 13px;
    width: 13px;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg viewPort='0 0 12 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3e%3cline x1='1' y1='11' x2='11' y2='1' stroke='red' stroke-width='2'/%3e%3cline x1='1' y1='1' x2='11' y2='11' stroke='red' stroke-width='2'/%3e%3c/svg%3e");
}

#searchinput {
    width: 200px;
}

.searchclear {
    position: absolute;
    background: #fff;
    line-height: 1.2;
    right: 60px;
    top: 0;
    bottom: 0;
    height: 14px;
    margin: auto;
    font-size: 14px;
    cursor: pointer;
    color: #ccc;
}





/* ---------------------------------------------------------------------- */


/*  2 - table custom
/* ---------------------------------------------------------------------- */

.tabselected {
    /* background-color: #58748B;*/
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 6px;
    top: -5px;
    position: relative;
    line-height: 30px;
    color: white;
}

.tspecing-origi {
    margin: 0px auto;
    border: 1px solid #fff;
    border-spacing: 3px 3px;
}

.tspecing-original,
.tspecing-original td {
    font-size: 0.9em;
    padding: 5px;
    text-align: center;
    border-collapse: collapse;
    border-radius: 0px;
}

.tspecing-original td {
    background: #f3f0f1;
    background: -moz-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: -webkit-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: linear-gradient(to bottom, #f3f0f1 0, #eee 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f3f0f1', endColorstr='#eeeeee', GradientType=0);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 1.1em;
    position: relative
}

.tspecing-original td.highlight {
    background: #c9c8c8;
    background: -moz-linear-gradient(top, #c9c8c8 0, #c9c8c8 100%);
    background: -webkit-linear-gradient(top, #c9c8c8 0, #c9c8c8 100%);
    background: linear-gradient(to bottom, #c9c8c8 0, #c9c8c8 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f3f0f1', endColorstr='#cecece', GradientType=0);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 1.1em;
    position: relative
}

.tspecing-original th {
    text-align: center;
    background: linear-gradient(60deg, #58748B, #58748B);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(244, 67, 54, .6);
    color: #58748B;
    border-radius: 0px;
}

.tspecing {
    margin: 0px auto;
    border: 1px solid #fff;
    border-spacing: 3px 3px;
}

.tspecing,
.tspecing td {
    font-size: 0.9em;
    padding: 5px;
    /* text-align: center; */
    /*border-collapse: collapse; */
    border-radius: 0px;
}

.tspecing td {
    background: #f3f0f1;
    background: -moz-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: -webkit-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: linear-gradient(to bottom, #f3f0f1 0, #eee 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f3f0f1', endColorstr='#eeeeee', GradientType=0);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 1.1em;
    position: relative
}

.tspecing td.highlight {
    background: #c9c8c8;
    background: -moz-linear-gradient(top, #c9c8c8 0, #c9c8c8 100%);
    background: -webkit-linear-gradient(top, #c9c8c8 0, #c9c8c8 100%);
    background: linear-gradient(to bottom, #c9c8c8 0, #c9c8c8 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f3f0f1', endColorstr='#cecece', GradientType=0);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 1.1em;
    position: relative
}



.tspecing td.highlight2 {
    background: #d6d6d6;
    background: -moz-linear-gradient(top, #d6d6d6 0, #a5a5a5 100%);
    background: -webkit-linear-gradient(top, #d6d6d6 0, #a5a5a5 100%);
    background: linear-gradient(to bottom, #d6d6d6 0, #a5a5a5 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f3f0f1', endColorstr='#a5a5a5', GradientType=0);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 1.1em;
    position: relative
}

.tspecing td.highlight3 {
    background: #c9c8c8;
    background: -moz-linear-gradient(top, #9B9A9A 0, #c07c24 100%);
    background: -webkit-linear-gradient(top, #9B9A9A 0, #9B9A9A 100%);
    background: linear-gradient(to bottom, #9B9A9A 0, #9B9A9A 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f3f0f1', endColorstr='#9B9A9A', GradientType=0);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 1.1em;
    position: relative
}

.tspecing th {
    /* text-align: center; */
    /* background: linear-gradient(60deg, #58748B, #58748B);
   box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(244, 67, 54, .6);*/
    color: #58748B;
    border-radius: 0px;
}

.table-condensed>thead>tr>th,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>td {
    padding: 3px;
}


/** custom table style **/

#delaytable,
#delaytable td {
    padding: 3rem;
    /*border-collapse: collapse; */
    border-radius: 5px;
}

#delaytable {
    margin: 0px auto;
    border: 1px;
    border-spacing: 5px 5px;
}

.table-cellstyle-primary td {
    background: #f3f0f1;
    background: -moz-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: -webkit-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: linear-gradient(to bottom, #f3f0f1 0, #eee 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f3f0f1', endColorstr='#eeeeee', GradientType=0);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    position: relative
}

.table-cellstyle-primary th {
    text-align: center;
    background: linear-gradient(60deg, #ab47bc, #7b1fa2);
    color: #797979;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(156, 39, 176, .6);
    border-radius: 5px;
}

.table-cellstyle-danger td {
    background: #f3f0f1;
    background: -moz-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: -webkit-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: linear-gradient(to bottom, #f3f0f1 0, #eee 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f3f0f1', endColorstr='#eeeeee', GradientType=0);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    position: relative
}

.table-cellstyle-danger th {
    text-align: center;
    background: linear-gradient(60deg, #ef5350, #d32f2f);
    color: #797979;
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(244, 67, 54, .6);
    border-radius: 5px;
}

#mlistreport tr:nth-child(1n) {
    opacity: 0;
}

#mlistreport tr td:first-child {
    text-align: left;
}

#mlistreport tr:nth-child(2n) {
    background: #bbb;
    border: 5px;
}

#mlistreport tr:nth-child(2n - 1) {
    background: #fff;
}

#mlistreport tr:nth-child(1n) {
    opacity: 0;
}

#mlistreport tr td:first-child {
    text-align: left;
}

#mlistreport tr:nth-child(2n) {
    background: #bbb;
    border: 5px;
}

#mlistreport tr:nth-child(2n - 1) {
    background: #fff;
}

.height-470 {
    height: 470px !important;
}

.content-loading {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #000;
    width: 100%;
    height: 100%;
    opacity: 1;
    filter: alpha(opacity=75);
    -moz-opacity: .75;
    z-index: 999;
    background: #fff url(loader-128x/Preloader_5.gif) 50% 50% no-repeat;
}

.table-style-mini {
    border-spacing: 0 5px;
    position: relative;
    margin-top: -5px;
}

.table-style-mini td {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAbCAIAAAAyOnIjAAAAA3NCSVQICAjb4U/gAAAAIUlEQVQImWP4+PEj09+/f5n+/fvH9PfvXzhG5uNik6gOAOTaUDaAXrIOAAAAAElFTkSuQmCC);
    background-color: #f1f1f1;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f1f1f1), color-stop(1, #dfdbdb));
    background-image: -webkit-linear-gradient(top, #f1f1f1, #dfdbdb);
    background-image: -moz-linear-gradient(top, #f1f1f1, #dfdbdb);
    background-image: -o-linear-gradient(top, #f1f1f1, #dfdbdb);
    background-image: linear-gradient(#f1f1f1, #dfdbdb);
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    table-layout: fixed;
    position: relative;
    word-break: break-word;
    word-break: break-all;
    white-space: normal;
    max-width: 300px;
}

.table-style-mini-select td {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAbCAIAAAAyOnIjAAAAA3NCSVQICAjb4U/gAAAAIUlEQVQImWP4+PEj09+/f5n+/fvH9PfvXzhG5uNik6gOAOTaUDaAXrIOAAAAAElFTkSuQmCC);
    background-color: #0000;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f1f1f1), color-stop(1, #dfdbdb));
    background-image: -webkit-linear-gradient(top, #f1f1f1, #dfdbdb);
    background-image: -moz-linear-gradient(top, #f1f1f1, #dfdbdb);
    background-image: -o-linear-gradient(top, #f1f1f1, #dfdbdb);
    background-image: linear-gradient(#f1f1f1, #dfdbdb);
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    position: relative
}

.table-style-mini td:before {
    content: '';
    width: 5px;
    background: none;
    right: 0;
    top: 5px;
    bottom: 5px;
    position: absolute
}

.table-style-mini td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-left: 1px solid #e2e2e4
}

.table-style-mini td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px
}

.table-style-mini td:last-child:before {
    background: 0 0 !important
}

.table-style-badge {
    border-spacing: 0 5px;
    position: relative;
    margin-top: -5px;
}

.table-style-badge td {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAbCAIAAAAyOnIjAAAAA3NCSVQICAjb4U/gAAAAIUlEQVQImWP4+PEj09+/f5n+/fvH9PfvXzhG5uNik6gOAOTaUDaAXrIOAAAAAElFTkSuQmCC);
    background-color: #f1f1f1;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f1f1f1), color-stop(1, #a8a8a8));
    background-image: -webkit-linear-gradient(top, #f1f1f1, #a8a8a8);
    background-image: -moz-linear-gradient(top, #f1f1f1, #a8a8a8);
    background-image: -o-linear-gradient(top, #f1f1f1, #a8a8a8);
    background-image: linear-gradient(#f1f1f1, #a8a8a8);
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    position: relative
}

.table-style-selected td {
    background-color: #f1f1f1;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f1f1f1), color-stop(1, #a8a8a8));
    background-image: -webkit-linear-gradient(top, #f1f1f1, #a8a8a8);
    background-image: -moz-linear-gradient(top, #f1f1f1, #a8a8a8);
    background-image: -o-linear-gradient(top, #f1f1f1, #a8a8a8);
    background-image: linear-gradient(#f1f1f1, #a8a8a8);
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    position: relative
}

.table-style-badge-select td {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAbCAIAAAAyOnIjAAAAA3NCSVQICAjb4U/gAAAAIUlEQVQImWP4+PEj09+/f5n+/fvH9PfvXzhG5uNik6gOAOTaUDaAXrIOAAAAAElFTkSuQmCC);
    background-color: #0000;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f1f1f1), color-stop(1, #a8a8a8));
    background-image: -webkit-linear-gradient(top, #f1f1f1, #a8a8a8);
    background-image: -moz-linear-gradient(top, #f1f1f1, #a8a8a8);
    background-image: -o-linear-gradient(top, #f1f1f1, #a8a8a8);
    background-image: linear-gradient(#f1f1f1, #a8a8a8);
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    position: relative
}

.table-style-badge td:before {
    content: '';
    width: 5px;
    background: none;
    right: 0;
    top: 5px;
    bottom: 5px;
    position: absolute
}

.table-style-badge td:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-left: 1px solid none;
}

.table-style-badge td:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px
}

.table-style-badge td:last-child:before {
    background: 0 0 !important
}

.table-transparent {
    margin: 0px auto;
    border: 1px solid #fff;
    border-spacing: 3px 3px;
}

.table-transparent td {
    padding: 5px;
    text-align: center;
    /*border-collapse: collapse; */
    border-radius: 0px;
}

.table-transparent td {
    background: #f3f0f1;
    background: -moz-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: -webkit-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: linear-gradient(to bottom, #f3f0f1 0, #eee 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f3f0f1', endColorstr='#eeeeee', GradientType=0);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    position: relative
}

.table-transparent th {
    text-align: center;
    /* background: linear-gradient(60deg, #58748B, #58748B);
   box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(244, 67, 54, .6);*/
    color: #58748B;
    border-radius: 0px;
}

.table-transparent-cutom {
    margin: 0px auto;
    border: 1px solid #fff;
    border-spacing: 3px 3px;
}

.table-transparent-cutom td {
    background: #f3f0f1;
    background: -moz-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: -webkit-linear-gradient(top, #f3f0f1 0, #eee 100%);
    background: linear-gradient(to bottom, #f3f0f1 0, #eee 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f3f0f1', endColorstr='#eeeeee', GradientType=0);
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    position: relative
}

.table-transparent-cutom th {
    text-align: center;
    /* background: linear-gradient(60deg, #58748B, #58748B);
   box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .2), 0 13px 24px -11px rgba(244, 67, 54, .6);*/
    color: #58748B;
    border-radius: 0px;
}

.table-style-plain {
    border-spacing: 0 5px;
    position: relative;
    margin-top: -5px;
}

.table-style-plain td {
    background-color: #f3f3f3;
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    position: relative
}

.table-style-plain td:before {
    content: '';
    width: 5px;
    background: none;
    right: 0;
    top: 5px;
    bottom: 5px;
    position: absolute
}

.table-style-plain td:last-child:before {
    background: 0 0 !important
}


/***/

.table-style-dark {
    border-spacing: 0 5px;
    position: relative;
    margin-top: -5px;
}

.table-style-dark td {
    background-color: #cccbce;
    padding-top: 10px !important;
    padding-bottom: 5px !important;
    position: relative
}

.table-style-dark td:before {
    content: '';
    width: 5px;
    background: none;
    right: 0;
    top: 5px;
    bottom: 5px;
    position: absolute
}

.table-style-dark td:last-child:before {
    background: 0 0 !important
}


/* ---------------------------------------------------------------------- */


/*  3 - textbox custom
/* ---------------------------------------------------------------------- */

div.cs-skin-slide-edit {
    color: #5b5b60;
    font-size: 12px;
    font-weight: 600;
    width: 100%
}

div.cs-skin-slide-edit::before {
    content: '';
    background: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s
}

.cs-skin-slide-edit.cs-active::before {
    -webkit-transform: scale3d(1, 4, 1);
    transform: scale3d(1, 4, 1);
    background: #f7f7f8;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2)
}

.cs-skin-slide-edit>span {
    border: none;
    height: 20px;
    line-height: 10px
}

.cs-skin-slide-edit.cs-active>span {
    text-indent: -290px;
    opacity: 0
}

.cs-skin-slide-edit.cs-active>span::after,
.cs-skin-slide-edit>span::after {
    font-family: fontAwesome;
    content: '\f0ab';
    color: #58748B;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-size: 12px
}

.cs-skin-slide-edit.cs-active>span::after {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.cs-skin-slide-edit .cs-options {
    background: #f7f7f8;
    width: 100%;
    height: 800%;
    padding: 5px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
}

.cs-skin-slide-edit.cs-active .cs-options {
    overflow-y: auto
}

.cs-skin-slide-edit .cs-options li {
    opacity: 0;
    -webkit-transform: translate3d(30%, 0, 0);
    transform: translate3d(30%, 0, 0);
    -webkit-transition: -webkit-transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    margin-bottom: 5px
}

.cs-skin-slide-edit.cs-active .cs-options li {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}

.cs-skin-slide-edit.cs-active .cs-options li:first-child {
    -webkit-transition-delay: 50ms;
    transition-delay: 50ms
}

.cs-skin-slide-edit.cs-active .cs-options li:nth-child(2) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s
}

.cs-skin-slide-edit.cs-active .cs-options li:nth-child(3) {
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

.cs-skin-slide-edit.cs-active .cs-options li:nth-child(4) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s
}

.cs-skin-slide-edit.cs-active .cs-options li:nth-child(5) {
    -webkit-transition-delay: .25s;
    transition-delay: .25s
}

.cs-skin-slide-edit.cs-active .cs-options li:nth-child(6) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s
}

.cs-skin-slide-edit.cs-active .cs-options li:nth-child(7) {
    -webkit-transition-delay: .35s;
    transition-delay: .35s
}

.cs-skin-slide-edit .cs-options li span {
    padding: .8em 1em
}

.cs-skin-slide-edit .cs-options li span:empty {
    display: none
}

.cs-skin-slide-edit .cs-options li.cs-focus,
.cs-skin-slide-edit .cs-options li:hover {
    background: #eaeaec
}

.cs-skin-slide-edit .cs-options li.cs-selected {
    color: #fff;
    background: #58748B
}


/****************************/

div.cs-skin-elasticedit {
    background: 0 0;
    font-size: 12px;
    font-weight: 600;
    color: #5b5b60
}

.cs-skin-elasticedit>span {
    background-color: #fff;
    z-index: 100;
    border: none;
    height: 20px;
    line-height: 10px
}

.cs-skin-elasticedit>span::after {
    font-family: FontAwesome;
    content: '\f0ab';
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    color: #58748B
}

.cs-skin-elasticedit .cs-options {
    overflow: visible;
    background: 0 0;
    opacity: 1;
    visibility: visible;
    pointer-events: none
}

.cs-skin-elasticedit.cs-active .cs-options {
    pointer-events: auto
}

.cs-skin-elasticedit .cs-options>ul::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform: scale3d(1, 0, 1);
    transform: scale3d(1, 0, 1);
    background: #f7f7f8;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2);
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s
}

.cs-skin-elasticedit.cs-active .cs-options>ul::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: none;
    transition: none;
    -webkit-animation: expand .6s ease-out;
    animation: expand .6s ease-out
}

.cs-skin-elasticedit .cs-options ul li {
    opacity: 0;
    -webkit-transform: translate3d(0, -25px, 0);
    transform: translate3d(0, -25px, 0);
    -webkit-transition: opacity .15s, -webkit-transform .15s;
    transition: opacity .15s, transform .15s
}

.cs-skin-elasticedit.cs-active .cs-options ul li {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    -webkit-transition: none;
    transition: none;
    -webkit-animation: bounce .6s ease-out;
    animation: bounce .6s ease-out
}

.cs-skin-elasticedit .cs-options span {
    background-repeat: no-repeat;
    background-position: 1.5em 50%;
    background-size: 2em auto;
    padding: .8em 1em
}

.cs-skin-elasticedit .cs-options li.cs-focus,
.cs-skin-elasticedit .cs-options li:hover {
    background: #eaeaec
}

.cs-skin-elasticedit .cs-options .cs-selected,
.cs-skin-elasticedit .cs-options .cs-selected:hover {
    color: #fff !important;
    background: #58748B !important
}


/* ---------------------------------------------------------------------- */


/*  4 - form custom
/* ---------------------------------------------------------------------- */

.form-group-minism .form-control {
    padding: 0;
    border-radius: 3px;
    font-size: 12px
}

.form-group-minism input.form-control {
    padding: 10px;
    border-radius: 3px;
    font-size: 12px
}

.form-group-minism select {
    padding: 0;
}

.form-group-minism select.form-control {
    height: 25px;
    line-height: 1.8;
    padding: 0;
    border-radius: 0;
    font-size: 16px;
}

.form-group-minism select.form-control option {
    font-size: 10px;
    padding: 0
}

.form-group-minism .form-control,
.input-minism {
    height: 18px;
    line-height: 2.5;
    background: red;
    border: none;
    font-size: 100% !important;
    padding: .4em .3em !important;
    font-weight: 600;
}

.form-group-minism .form-control::-ms-input-placeholder {
    color: #b4b4b5;
    opacity: 1;
    text-transform: uppercase;
    font-size: 85% !important;
    padding: 0 0 .4em 0 !important;
    font-weight: 400;
    font: 50px;
}

.form-group-minism .form-control::-moz-placeholder {
    color: #b4b4b5;
    opacity: 1;
    text-transform: uppercase;
    font-size: 85% !important;
    padding: 0 0 .4em 0 !important;
    font-weight: 400
}

.form-control::-webkit-input-placeholder {
    color: #b4b4b5;
    opacity: 1;
    text-transform: uppercase;
    font-size: 85% !important;
    padding: 0 0 .4em 0 !important;
    font-weight: 600
}

.form-group-minism .form-control:focus {
    box-shadow: none !important;
    border-color: none !important;
    background-color: #C4C0C0 !important;
    padding: 0;
    color: #000 !important;
}

.form-group-minism .form-control-2:focus {
    box-shadow: none !important;
    border-color: none !important;
    background-color: #fff !important;
    padding: 0;
    color: #fff !important;
}

.note-editor01 textarea {
    margin-top: 10px !important
}

.note-editor01 {
    position: relative;
    padding-top: 0px;
    background: none
}

.note-editor01 textarea {
    background: url(../images/line_detail.png) !important;
    line-height: 20px !important;
    min-height: 100px !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    font-weight: 600;
    font-size: 14px !important;
}

.note-editor01 textarea:focus {
    background-color: none !important
}

.note-editor01:before {
    position: absolute;
    height: 12px;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    padding-top: 1px
}


.note-editor-new textarea {
    margin-top: 10px !important
}

.note-editor-new {
    position: relative;
    padding-top: 0px;
    background: none
}

.note-editor-new textarea {
    background: url(../images/line_detail.png) !important;
    line-height: 20px !important;
    min-height: 60px !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    font-weight: 600;
    font-size: 12px !important;
}

.note-editor-new textarea:focus {
    background-color: none !important
}

.note-editor-new:before {
    position: absolute;
    height: 12px;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    padding-top: 1px
}

.note-editor02 textarea {
    margin-top: 10px !important
}

.note-editor02 {
    position: relative;
    padding-top: 0px;
    background: none
}

.note-editor02 textarea {
    background: url(../images/line_detail.png) !important;
    line-height: 20px !important;
    min-height: 80px !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    font-weight: 600;
    font-size: 14px !important;
}

.note-editor02 textarea:focus {
    background-color: none !important
}

.note-editor02:before {
    position: absolute;
    height: 12px;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    padding-top: 1px
}

.note-editor-mini textarea {
    margin-top: 10px !important
}

.note-editor-mini {
    position: relative;
    padding-top: 0px;
    background: none
}

.note-editor-mini textarea {
    background: url(../images/line_detail.png) !important;
    line-height: 20px !important;
    min-height: 60px !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    font-weight: 600;
    font-size: 14px !important;
}

.note-editor-mini textarea:focus {
    background-color: none !important
}

.note-editor-mini:before {
    position: absolute;
    height: 12px;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    padding-top: 1px
}

.note-editor-det textarea {
    margin-top: 10px !important
}

.note-editor-det {
    position: relative;
    padding-top: 0px;
    background: none
}

.note-editor-det textarea {
    background: url(../images/line_detail.png) !important;
    line-height: 20px !important;
    min-height: 40px !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    font-weight: 600;
    font-size: 14px !important;
    overflow: auto;
    resize: none;
}

.note-editor-det textarea:focus {
    background-color: none !important
}

.note-editor-det:before {
    position: absolute;
    height: 12px;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    padding-top: 1px
}

.input-group-addonedit {
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    padding-left: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    border-radius: 4px
}

.input-group-addonedit:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addonedit input[type=checkbox],
.input-group-addonedit input[type=radio] {
    margin-top: 0
}

.input-group-addonedit:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0
}

.input-group-addonedit:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0
}



.input-group-addon-front {
    display: table-cell;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    padding-left: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    border-radius: 4px
}

.input-group-addon-front:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon-front input[type=checkbox],
.input-group-addon-front input[type=radio] {
    margin-top: 0
}

.input-group-addon-front:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0
}

.input-group-addon-front:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0
}


.input-group .form-group-minism {
    width: auto;
}


/** custom form control **/

input[type=text].noborder,
input[type=password].noborder,
input[type=datetime].noborder,
input[type=week].noborder,
input[type=email].noborder,
input[type=url].noborder,
input[type=tel].noborder,
input[type=color].noborder,
input[type=date].noborder,
input[type=time].noborder,
input[type=datetime-local].noborder,
input[type=month].noborder,
input[type=number].noborder,
input[type=search].noborder,
select.noborder,
textarea.noborder {
    background: 0 0 !important;
    border: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    color: #5b5b60 !important;
    font-family: inherit !important;
    transition-duration: .1s !important;
    box-shadow: none !important;
    -moz-transition: border .3s ease-out;
    -o-transition: border .3s ease-out;
    -webkit-transition: border .3s ease-out;
    transition: border .3s ease-out
}

input[type=text].noborder:hover,
input[type=password].noborder:hover,
input[type=datetime].noborder:hover,
input[type=week].noborder:hover,
input[type=email].noborder:hover,
input[type=url].noborder:hover,
input[type=tel].noborder:hover,
input[type=color].noborder:hover,
input[type=date].noborder:hover,
input[type=time].noborder:hover,
input[type=datetime-local].noborder:hover,
input[type=month].noborder:hover,
input[type=number].noborder:hover,
input[type=search].noborder:hover,
select.noborder:hover,
textarea.noborder:hover {
    border-color: #aeacb4 !important
}

input[type=text].noborder:focus,
input[type=password].noborder:focus,
input[type=datetime].noborder:focus,
input[type=week].noborder:focus,
input[type=email].noborder:focus,
input[type=url].noborder:focus,
input[type=tel].noborder:focus,
input[type=color].noborder:focus,
input[type=date].noborder:focus,
input[type=time].noborder:focus,
input[type=datetime-local].noborder:focus,
input[type=month].noborder:focus,
input[type=number].noborder:focus,
input[type=search].noborder:focus,
select.noborder:focus,
textarea.noborder:focus {
    box-shadow: none !important;
    border-color: #58748B !important;
    background-color: none !important
}


input[type=text].no-bg {
    background: #fff !important;
    border: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    color: #5b5b60 !important;
    font-family: inherit !important;
    transition-duration: .1s !important;
    box-shadow: none !important;
    -moz-transition: border .3s ease-out;
    -o-transition: border .3s ease-out;
    -webkit-transition: border .3s ease-out;
    transition: border .3s ease-out
}

input[type=text].no-bg:hover {
    background-color: none !important
}

input[type=text].no-bg:focus {
    background-color: none !important
}

.input-vsmex {
    padding: 0;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 200
}

.input-vsmex {
    height: 16px;
    line-height: 1.6
}

.input-vsm {
    padding: 0;
    border-radius: 0px;
    font-size: 18px;
    font-weight: 600
}

.input-vsm {
    height: 25px;
    line-height: 1.8
}

.form-group-sm input[type="checkbox"] {
    display: none;
}

.form-group-sm input[type="checkbox"]+.btn-group>label span {
    width: 20px;
}

.form-group-sm input[type="checkbox"]+.btn-group>label span:first-child {
    display: none;
}

.form-group-sm input[type="checkbox"]+.btn-group>label span:last-child {
    display: inline-block;
}

.form-group-sm input[type="checkbox"]:checked+.btn-group>label span:first-child {
    display: inline-block;
}

.form-group-sm input[type="checkbox"]:checked+.btn-group>label span:last-child {
    display: none;
}


/* ---------------------------------------------------------------------- */


/*  5 - application custom
/* ---------------------------------------------------------------------- */

.application {
    border-spacing: 0;
    height: 100%;
    margin: 0 -15px
}

.application .col {
    float: left;
    height: 100%;
    vertical-align: top
}

.application .col-right {
    float: right;
    height: 100%;
    vertical-align: top
}

.application .p-options {
    width: 359px;
    overflow: hidden;
    background: none;
}

.application .p-options-pcontainer {
    width: 359px;
    height: 100% !important;
    position: relative
}

.application .p-options-300 {
    width: 300px;
    overflow: hidden;
    background: none;
}

.application .p-options-container-300 {
    width: 300px;
    height: 100% !important;
    position: relative
}

.application .p-wide-form {
    width: 550px;
    overflow: hidden;
    background: none;
}

.application .p-wide-form-pcontainer {
    width: 600px;
    height: 100% !important;
    position: relative
}

.application .pc-options {
    width: 420px;
    overflow: hidden;
    background: none;
}

.application .pc-options-pcontainer {
    width: 420px;
    height: 100% !important;
    position: relative
}

.application .p-container {
    width: 359px;
    height: 100% !important;
    position: relative
}

.application .pp-reader {
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff;
    margin-right: 0;
}

.application .pp-reader-inner {
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #f0f0f0;
    margin-right: 25px;
    margin-left: 25px;
}

.application .pp-innerview {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #fff;
    width: 100%;
    top: 80px;
    bottom: 0
}

.application .pc-innerview {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #fff;
    width: 100%;
    top: 0px;
    bottom: 0
}

.application .pc-innerview-85 {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #fff;
    width: 100%;
    top: 85px;
    bottom: 0
}

.application .pc-innerview2 {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    background: #fff;
    top: 100px;
    bottom: 0
}

.application .pp-innerviewsub {
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff;
    margin-right: 150px;
}

.application .main-panel {
    width: 300px !important;
    border-right: 1px solid none;
    overflow: hidden;
    background: none;
}

.application .main-panel-280 {
    width: 280px !important;
    border-right: 1px solid none;
    overflow: hidden;
    background: none;
}

.application .mainwrap-list {
    width: 280px;
    height: 100% !important;
    position: relative
}

.application .main-container {
    border-right: 1px solid #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 230px;
    bottom: 0;
}

.application .main-container-panel {
    width: 320px !important;
    border-right: 1px solid #dee5e7;
    overflow: hidden;
}

.application .main-container-body {
    border-right: 1px solid #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 320px;
    bottom: 0
}

.application .main-view {
    height: 100%;
    margin-left: 250px;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff
}

.application .main-innerview {
    height: 100% !important;
    position: relative
}

.application .collection-view {
    height: 100%;
    margin-left: 0px;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff
}

.application .collection-reader {
    height: 100%;
    margin-left: 320px;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff
}

.application .app-inner-view {
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff
}

.application .p-left {
    width: 400px !important;
    border-right: 1px solid #dee5e7;
    overflow: hidden;
}

.application .vertical-menu {
    width: 150px !important;
    border-left: 1px solid #252A30;
    -moz-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABNCAIAAADo7ZnJAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQYlXWPyRGAMAwDd1wwHVADJS+POERk4OVD1mGO8yq1wFIKLXHsJLDGH8wSou8q0bfGxplYcpaHRerG/J/zS/edLTnrjvDo7PHv1Nhy3lZMnHg0MO2JAAAAAElFTkSuQmCC);
    background-color: #566171;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6e7d8f), color-stop(1, #404854));
    background-image: -webkit-linear-gradient(top, #6e7d8f, #404854);
    background-image: -moz-linear-gradient(top, #6e7d8f, #404854);
    background-image: -o-linear-gradient(top, #6e7d8f, #404854);
    background-image: linear-gradient(#6e7d8f, #404854);
}

.panel-gradient-menu {
    width: 100% !important;
    border-left: 1px solid #252A30;
    -moz-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABNCAIAAADo7ZnJAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQYlXWPyRGAMAwDd1wwHVADJS+POERk4OVD1mGO8yq1wFIKLXHsJLDGH8wSou8q0bfGxplYcpaHRerG/J/zS/edLTnrjvDo7PHv1Nhy3lZMnHg0MO2JAAAAAElFTkSuQmCC);
    background-color: #566171;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6e7d8f), color-stop(1, #404854));
    background-image: -webkit-linear-gradient(top, #6e7d8f, #404854);
    background-image: -moz-linear-gradient(top, #6e7d8f, #404854);
    background-image: -o-linear-gradient(top, #6e7d8f, #404854);
    background-image: linear-gradient(#6e7d8f, #404854);
}

.application .innerwrap-list {
    width: 100%;
    height: 100% !important;
    position: relative
}

.application .email-reader {
    height: 100%;
    margin-left: 320px;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff
}

.application .pp-reader2 {
    height: 100%;
    width: 100%;
    margin-right: 0px;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff
}

.application .pp-subview {
    bottom: 0;
    left: 0;
    margin-top: -5px;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 5px;
}

.application .pp-subview-80 {
    bottom: 0;
    left: 0;
    margin-top: -5px;
    margin-bottom: 80px;
    margin-left: 15px;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 5px;
}

.application .scroll-container {
    /* height: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff */
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #fff;
    width: 100%;
    top: 0;
    bottom: 0
}

.application .pp-innerview2 {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #fff;
    width: 100%;
    top: 80px;
    bottom: 0
}

.application .pp-inner-top50 {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #fff;
    width: 100%;
    top: 80px;
    bottom: 0
}

.application .pp-innerview50 {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #fff;
    width: 100%;
    top: 0px;
    bottom: 0
}

.application .pp-innerview-152 {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: none;
    width: 100%;
    top: 152px;
    bottom: 0
}

.application .pp-innerview-100 {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: none;
    width: 100%;
    top: 100px;
    bottom: 0
}

.application .pp-innerviewsub {
    margin-right: 300px;
    padding: 100px;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #fff;
    width: 100%;
    top: 60px;
    bottom: 0
}

.subdupcheck-view {
    border-top: 1px solid #dee5e7;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    background: #fff;
    width: 100%;
    top: 80px;
    bottom: 0
}

.p-subresult-view {
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    top: 0px;
    bottom: 0
}

.application .pp-inner {
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff
}

.application .labelwrap-list {
    width: 50px;
    height: 100% !important;
    position: relative
}

.appinner-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: scroll;
    overflow-y: scroll;
    width: 100%;
    top: 0px;
    bottom: 0
}


/* ---------------------------------------------------------------------- */


/*  6 - panel custom
/* ---------------------------------------------------------------------- */

.panel-darklight01,
.partition-darklight01 {
    color: white;
    text-align: center;
    font-size: 10px;
    display: table;
    list-style: none;
    margin: 0;
    padding: 15px 0;
    position: relative;
    width: 100%;
    background: #e7e7e9;
    border-radius: 0px;
    /***/
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAICAIAAAC3eAIWAAAAA3NCSVQICAjb4U/gAAAAI0lEQVQImWPwj0hh+v//PxPD//9M////Z/rP8J/p//9/MD4AGUETB+SFfCsAAAAASUVORK5CYII=);
    background-color: #606a77;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6a798b), color-stop(1, #4c7ab1));
    background-image: -webkit-linear-gradient(top, #6a798b, #4c7ab1);
    background-image: -moz-linear-gradient(top, #6a798b, #4c7ab1);
    background-image: -o-linear-gradient(top, #6a798b, #4c7ab1);
    background-image: linear-gradient(#6a798b, #4c7ab1);
    -moz-box-shadow: inset 0 2px 0 #586270, inset 0 1px 0 #6b7888;
    -webkit-box-shadow: inset 0 2px 0 #586270, inset 0 1px 0 #6b7888;
    box-shadow: inset 0 2px 0 #586270, inset 0 1px 0 #6b7888;
}

.panel-darklight,
.partition-darklight {
    color: white;
    text-align: center;
    font-size: 10px;
    display: table;
    list-style: none;
    margin: 0;
    padding: 15px 0;
    position: relative;
    width: 100%;
    background: #e7e7e9;
    border-radius: 0px;
    /***/
    border-bottom: 1px solid #252A30;
    border-top: 1px solid #252A30;
    -moz-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABNCAIAAADo7ZnJAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQYlXWPyRGAMAwDd1wwHVADJS+POERk4OVD1mGO8yq1wFIKLXHsJLDGH8wSou8q0bfGxplYcpaHRerG/J/zS/edLTnrjvDo7PHv1Nhy3lZMnHg0MO2JAAAAAElFTkSuQmCC);
    background-color: #566171;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6e7d8f), color-stop(1, #404854));
    background-image: -webkit-linear-gradient(top, #6e7d8f, #404854);
    background-image: -moz-linear-gradient(top, #6e7d8f, #404854);
    background-image: -o-linear-gradient(top, #6e7d8f, #404854);
    background-image: linear-gradient(#6e7d8f, #404854);
}

.panel-coral,
.partition-coral {
    background-color: #FF884D;
    position: relative;
    color: #fff
}

.panel-coral .panel-tools .btn,
.panel-coral .panel-tools>a,
.partition-azure .panel-tools .btn,
.partition-azure .panel-tools>a {
    color: rgba(255, 255, 255, .7) !important
}

.panel-coral .panel-tools .btn:hover,
.panel-coral .panel-tools>a:hover,
.partition-azure .panel-tools .btn:hover,
.partition-azure .panel-tools>a:hover {
    color: #fff !important
}

.product-images {
    background: #ffffff;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 230px;
    margin: 2em;
    border-radius: 10px;
    display: inline-block;
    -webkit-transition: 300ms;
    transition: 300ms;
    position: relative;
}

.product-images .product-image-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: none;
}

.product-images:hover .product-image-buttons {
    display: block;
}

.thumbnail {
    margin-top: 20px !important;
}

.thumbnail-product {
    display: block;
    padding: 4px;
    max-width: 230px;
    margin-bottom: 0px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

.thumbnail-product>img {
    display: block;
    max-width: 100%;
    height: auto;
}

.thumbnail-product>img {
    margin-right: auto;
    margin-left: auto;
}

.btn-uploadproduct {
    padding: 10px 16px;
    font-size: 60px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.productmenu-panel-body {
    padding: 20px;
}

.panel-title-aside {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.0em;
    font-weight: 600;
    color: inherit;
}

.panel-heading .panel-heading-tabs-noborder {
    list-style: none;
    top: 0;
    right: 0;
    position: absolute;
    margin: 0;
    padding: 0;
}

.panel-heading .panel-heading-tabs-noborder>li {
    float: left;
    vertical-align: middle;
    padding: 0 15px;
    border-left-width: none;
    border-left-style: none;
    border-left-color: none;
    height: 60px;
    line-height: 60px;
}

.innercontainer {
    position: relative;
    /* Sit on top of the page content */
    width: 300px;
    /* Full width (cover the whole page) */
    height: 200px;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 9;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

.box {
    background-color: red;
}

.subresult-view {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 100px;
    bottom: 0;
    background-color: #FFF
}

.subresult-view .left-panel {
    width: 320px !important;
    border-right: 1px solid #dee5e7;
    overflow: hidden;
    background: #fff;
}

.subresult-view .left-content {
    width: 31px;
    height: 100% !important;
    position: relative
}

.subresult-view .left-panel-det {
    width: 450px !important;
    border-right: 1px solid #dee5e7;
    overflow: hidden;
    background: #fff;
}

.subresult-view .left-content {
    width: 100px;
    height: 100% !important;
    position: relative
}

.subresult-view .right-panel {
    height: 100%;
    margin-left: 320px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.subresult-detview {
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0px;
    bottom: 0px;
    background-color: #FFF
}

.subresult-detview .left-panel {
    width: 320px !important;
    border-right: 1px solid #dee5e7;
    overflow: hidden;
    background: #fff;
}

.subresult-detview .left-content {
    width: 31px;
    height: 90% !important;
    position: relative
}

.subresult-detview .left-panel-det {
    width: 480px !important;
    border-right: none;
    overflow: hidden;
    background: #fff;
}

.subresult-detview .right-panel {
    height: 90%;
    margin-left: 320px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.left-scroll {
    border-right: 1px solid #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 320px;
    top: 0;
    bottom: 0
}

.left-scroll-det {
    border-right: none;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 520px;
    top: 0;
    bottom: 0
}


/* ---------------------------------------------------------------------- */


/*   7 - loader custom
/* ---------------------------------------------------------------------- */

.pageLoader.hide {
    display: none
}

.pageLoader.animate {
    left: 55%;
    top: 50%;
    position: fixed;
    margin: -70px 0 0 -90px;
    width: 180px;
    height: 140px;
    text-align: center;
    font-size: 10px;
    z-index: 2000;
    padding: 45px 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

.pageLoader.animate>div {
    background-color: #fff;
    height: 50px;
    width: 7px;
    display: inline-block;
    -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
    animation: stretchdelay 1.2s infinite ease-in-out;
}

.pageLoader.animate>div+div {
    margin-left: 2px
}

.pageLoader.animate .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.pageLoader.animate .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.pageLoader.animate .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.pageLoader.animate .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(.4)
    }

    20% {
        -webkit-transform: scaleY(1)
    }
}

@keyframes stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(.4);
        -webkit-transform: scaleY(.4);
    }

    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

.loader:after {
    width: 30px;
    height: 30px;
    top: 0;
    margin-left: 10px;
    height: 3px;
    background: #FF3D00;
    margin: -15px 0 0 -15px;
    animation: 6s prog ease-in infinite;
}

@keyframes prog {
    to {
        width: 100%;
    }
}

#load {
    position: absolute;
    width: 600px;
    height: 36px;
    left: 50%;
    top: 40%;
    margin-left: -300px;
    overflow: visible;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

#load div {
    position: absolute;
    width: 20px;
    height: 36px;
    opacity: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2em;
    animation: move 2s linear infinite;
    -o-animation: move 2s linear infinite;
    -moz-animation: move 2s linear infinite;
    -webkit-animation: move 2s linear infinite;
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    color: #ec2c2c;
}

#load div:nth-child(2) {
    animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

#load div:nth-child(3) {
    animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

#load div:nth-child(4) {
    animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

#load div:nth-child(5) {
    animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
}

#load div:nth-child(6) {
    animation-delay: 1s;
    -o-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

#load div:nth-child(7) {
    animation-delay: 1.2s;
    -o-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

@keyframes move {
    0% {
        left: 0;
        opacity: 0;
    }

    35% {
        left: 41%;
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }

    65% {
        left: 59%;
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        left: 100%;
        -moz-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
        opacity: 0;
    }
}

@-moz-keyframes move {
    0% {
        left: 0;
        opacity: 0;
    }

    35% {
        left: 41%;
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }

    65% {
        left: 59%;
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        left: 100%;
        -moz-transform: rotate(-180deg);
        transform: rotate(-180deg);
        opacity: 0;
    }
}

@-webkit-keyframes move {
    0% {
        left: 0;
        opacity: 0;
    }

    35% {
        left: 41%;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }

    65% {
        left: 59%;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        left: 100%;
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
        opacity: 0;
    }
}

@-o-keyframes move {
    0% {
        left: 0;
        opacity: 0;
    }

    35% {
        left: 41%;
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }

    65% {
        left: 59%;
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        left: 100%;
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
        opacity: 0;
    }
}

.lds-dual-ring {
    display: inline-block;
    width: 10px;
    height: 10px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 10px;
    height: 10px;
    margin: 1px;
    border-radius: 50%;
    border: 1px solid #000;
    border-color: #000 transparent #000 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* HTML: <div class="loader"></div> */



.loader-tx {
    position: absolute;
    left: 50%;
    top: 30%;
    width: 150px;
    aspect-ratio: 1;
    display: grid;
    border: 7px solid #0000;
    border-radius: 50%;
    border-color: #1C1C1C #0000;
    animation: l16 1s infinite linear;
}

.loader-tx::before,
.loader-tx::after {
    content: "";
    grid-area: 1/1;
    margin: 15px;
    border: inherit;
    border-radius: 50%;
}

.loader-tx::before {
    border-color: #f03355 #0000;
    animation: inherit;
    animation-duration: .5s;
    animation-direction: reverse;
}

.loader-tx::after {
    margin: 30px;
}

@keyframes l16 {
    100% {
        transform: rotate(1turn)
    }
}

/* add padding  */

/* .left-addon input {
    padding-left: 10px;
}

.right-addon input {
    padding-left: 15px!important;
}

.right-addon-30 input {
    padding-right: 10px;
} */

.lds-circle {
    display: inline-block;
    transform: translateZ(1px);
}

.lds-circle>div {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 8px;
    border-radius: 50%;
    background: #000;
    animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes lds-circle {

    0%,
    100% {
        animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    }

    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(1800deg);
        animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    }

    100% {
        transform: rotateY(3600deg);
    }
}

.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 12px;
    height: 12px;
}

.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 1px;
    box-sizing: border-box;
    border: 8px solid #000;
    border-color: #000 transparent #000 transparent;
    animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}

.lds-hourglass-ad {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
}

.lds-hourglass-ad:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 3px;
    margin-right: 10px;
    box-sizing: border-box;
    border: 12px solid #000;
    border-color: #000 transparent #000 transparent;
    animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass-ad {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}

 

.loading h2 {
    color: #ccc;
    margin: 0;
    font: .8em verdana;
    text-transform: uppercase;
    letter-spacing: .1em;
}


/*
   * Loading Dots
   * Can we use pseudo elements here instead :after?
   */

.loading span {
    display: inline-block;
    vertical-align: middle;
    width: .6em;
    height: .6em;
    margin: .19em;
    background: #007DB6;
    border-radius: .6em;
    animation: loading 1s infinite alternate;
}


/*
   * Dots Colors
   * Smarter targeting vs nth-of-type?
   */

.loading span:nth-of-type(2) {
    background: #008FB2;
    animation-delay: 0.2s;
}

.loading span:nth-of-type(3) {
    background: #009B9E;
    animation-delay: 0.4s;
}

.loading span:nth-of-type(4) {
    background: #00A77D;
    animation-delay: 0.6s;
}

.loading span:nth-of-type(5) {
    background: #00B247;
    animation-delay: 0.8s;
}

.loading span:nth-of-type(6) {
    background: #a3a3a3;
    animation-delay: 1.0s;
}

.loading span:nth-of-type(7) {
    background: #A0B61E;
    animation-delay: 1.2s;
}

.lds-dual-ring {
    display: inline-block;
    width: 10px;
    height: 10px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 10px;
    height: 10px;
    margin: 1px;
    border-radius: 50%;
    border: 1px solid #000;
    border-color: #000 transparent #000 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}





/* add padding  */

.left-addon input {
    padding-left: 10px;
}

/* .right-addon input {
    padding-right: 10px;
} */

.lds-circle {
    display: inline-block;
    transform: translateZ(1px);
}

.lds-circle>div {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 8px;
    border-radius: 50%;
    background: #000;
    animation: lds-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes lds-circle {

    0%,
    100% {
        animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    }

    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(1800deg);
        animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    }

    100% {
        transform: rotateY(3600deg);
    }
}

.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 12px;
    height: 12px;
}

.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 1px;
    box-sizing: border-box;
    border: 8px solid #000;
    border-color: #000 transparent #000 transparent;
    animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}

.lds-hourglass-ad {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
}

.lds-hourglass-ad:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 3px;
    margin-right: 10px;
    box-sizing: border-box;
    border: 12px solid #000;
    border-color: #000 transparent #000 transparent;
    animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass-ad {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}
 


.drop-limit .dropdown-menu>li>a {
 
    color: #000!important; 
}

.drop-limit .dropdown-menu>li>a:hover,
.drop-limit .dropdown-menu>li>a:focus {
    color: #fff!important;
    text-decoration: none;
    background-color: red;
}

/* .dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    color: #fff;
    text-decoration: none;
    background-color: #07111b;
    outline: 0;
} */

.drop-limit.dropdown-menu>.active>a,
.drop-limit.dropdown-menu>.active>a:hover,
.drop-limit.dropdown-menu>.active>a:focus {
    color: #fff!important;
    background-color: red ;
    /* color: #fff;
    text-decoration: none;
   
    outline: 0; */
}

.drop-limit.dropdown-menu>.disabled>a,
.drop-limit.dropdown-menu>.disabled>a:hover,
.drop-limit.dropdown-menu>.disabled>a:focus {
    color: #fff!important;
}

.drop-limit.dropdown-menu>.disabled>a:hover,
.drop-limit.dropdown-menu>.disabled>a:focus {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
    color: #fff!important;
}













.loading h2 {
    color: #ccc;
    margin: 0;
    font: .8em verdana;
    text-transform: uppercase;
    letter-spacing: .1em;
}


/* ---------------------------------------------------------------------- */


/*  8 - menu custom
/* ---------------------------------------------------------------------- */

.ca-menu {
    padding: 0;
    margin: 10px 10px 15px 25px;
    width: 100%;
}

.ca-menu li {
    width: 85px;
    margin: 0px;
    height: 95px;
    overflow: hidden;
    position: relative;
    float: left;
    background: #f7f7f8;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-right: 4px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

.ca-menu li:last-child {
    margin-right: 0px;
}

.ca-menu li a {
    text-align: left;
    width: 100%;
    height: 100%;
    display: block;
    color: #333;
    position: relative;
}

.ca-icon {
    font-family: 'WebSymbolsRegular', cursive;
    font-size: 25px;
    color: #32CD32;
    text-shadow: 0px 0px 1px #333;
    line-height: 60px;
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0px;
    top: 0px;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ca-content {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 50%;
    top: 50%;
    padding: 2px;
}

.ca-main {
    font-size: 1em;
    opacity: 0.8;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.ca-sub {
    text-align: center;
    font-size: 10px;
    color: #666;
    /* line-height: 20px;*/
    opacity: 0.8;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.ca-menu li:hover {
    background-color: #5B9BD1;
    color: #fff;
}

.ca-menu li:hover .ca-icon {
    color: #fff;
    font-size: 35px;
}

.ca-menu li:hover .ca-main {
    color: #FFF;
    font-weight: 700;
    -webkit-animation: moveFromLeftRotate 300ms ease;
    -moz-animation: moveFromLeftRotate 300ms ease;
    -ms-animation: moveFromLeftRotate 300ms ease;
}

.ca-menu li:hover .ca-sub {
    color: #fff;
    -webkit-animation: moveFromBottom 500ms ease;
    -moz-animation: moveFromBottom 500ms ease;
    -ms-animation: moveFromBottom 500ms ease;
}

@-webkit-keyframes moveFromLeftRotate {
    from {
        -webkit-transform: translateX(-100%) rotate(-90deg);
    }

    to {
        -webkit-transform: translateX(0%) rotate(0deg);
    }
}

@-moz-keyframes moveFromLeftRotate {
    from {
        -moz-transform: translateX(-100%) rotate(-90deg);
    }

    to {
        -moz-transform: translateX(0%) rotate(0deg);
    }
}

@-ms-keyframes moveFromLeftRotate {
    from {
        -ms-transform: translateX(-100%) rotate(-90deg);
    }

    to {
        -ms-transform: translateX(0%) rotate(0deg);
    }
}

@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(100%);
    }

    to {
        -webkit-transform: translateY(0%);
    }
}

@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(100%);
    }

    to {
        -moz-transform: translateY(0%);
    }
}

@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(100%);
    }

    to {
        -ms-transform: translateY(0%);
    }
}


.swMain-transparent>ul {
    display: table;
    list-style: none;
    margin: 0 0 0px;
    padding: 0px 0;
    position: relative;
    width: 100%;
    background: none;
    border-radius: 5px
}

.swMain-transparent>ul li {
    display: table-cell;
    text-align: center;
    width: 1%
}

.swMain-transparent>ul li>a:before {
    border-top: 4px solid #c8c7cc;
    content: "";
    display: block;
    font-size: 0;
    height: 1px;
    overflow: hidden;
    position: relative;
    top: 21px;
    width: 100%;
    z-index: 1
}

.swMain-transparent>ul li:first-child>a:before {
    left: 50%;
    max-width: 51%
}

.swMain-transparent>ul li:last-child>a:before {
    max-width: 50%;
    width: 50%
}

.swMain-transparent li>a.done:before,
.swMain-transparent>ul li>a.selected:before {
    border-color: red;
}

.swMain-transparent>ul .stepNumber {
    background-color: #fff;
    border: 5px solid #c8c7cc;
    border-radius: 100%;
    color: #db3d21;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    height: 40px;
    line-height: 30px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index: 2
}

.swMain-transparent>ul li>a.selected .stepNumber {
    border-color: red;
}

/* .swMain-transparent ul li>a.done .stepNumber, .swMain-transparent>ul li:last-child>a.selected .stepNumber {
    border-color: #d43f3a;
    background-color: #d43f3a;
    color: #fff;
    text-indent: -9999px
}
.swMain-transparent ul li>a.done .stepNumber:before, .swMain-transparent>ul li:last-child>a.selected .stepNumber:before {
    content: "\f00c";
    display: inline;
    float: right;
    font-family: FontAwesome;
    font-weight: 300;
    height: auto;
    text-shadow: none;
    margin-right: 7px;
    text-indent: 0
} 
.swMain-transparent ul li>a.done.wait .stepNumber {
    background-color: #d55e5e!important;
    color: #CCC!important;
    text-indent: 0!important
}*/
.swMain-transparent ul li>a.done.wait .stepNumber:before {
    content: "" !important
}

.swMain-transparent>ul li .stepDesc {
    color: #ffffff;
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    max-width: 100%;
    table-layout: fixed;
    text-align: center;
    word-wrap: break-word;
    z-index: 104
}

.swMain-transparent li>a.done .stepDesc,
.swMain-transparent>ul li>a.selected .stepDesc {
    color: #ff150f;
}

.swMain-transparent>ul li>a:hover {
    text-decoration: none
}

.swMain-transparent>ul li>a.disabled {
    cursor: default
}

.swMain-transparent .progress {
    margin-bottom: 30px
}

.swMain-transparent .stepContainer {
    height: auto !important
}

.swMain-transparent .close,
.swMain-transparent .loader,
.swMain-transparent [class*=" button"],
.swMain-transparent [class^=button] {
    display: none
}

.swMain-fixed:before {
    display: table;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    /*** add **/
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAICAIAAAC3eAIWAAAAA3NCSVQICAjb4U/gAAAAI0lEQVQImWPwj0hh+v//PxPD//9M////Z/rP8J/p//9/MD4AGUETB+SFfCsAAAAASUVORK5CYII=);
    background-color: #606a77;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4f5864), color-stop(1, #49515b));
    background-image: -webkit-linear-gradient(top, #6b9ad8, #49515b);
    background-image: -moz-linear-gradient(top, #4f5864, #49515b);
    background-image: -o-linear-gradient(top, #4f5864, #49515b);
    background-image: linear-gradient(#4f5864, #49515b);
    -moz-box-shadow: inset 0 2px 0 #586270, inset 0 1px 0 #6b7888;
    -webkit-box-shadow: inset 0 2px 0 #586270, inset 0 1px 0 #6b7888;
    box-shadow: inset 0 2px 0 #586270, inset 0 1px 0 #6b7888;
    height: 8px;
}

.swMain-fixed>ul {
    display: table;
    list-style: none;
    margin: 0;
    padding: 5px 0;
    position: relative;
    width: 100%;
    background: #0005;
    border-radius: 0px;
    border-bottom: 1px solid #252A30;
    border-top: 1px solid #252A30;
    -moz-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABNCAIAAADo7ZnJAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQYlXWPyRGAMAwDd1wwHVADJS+POERk4OVD1mGO8yq1wFIKLXHsJLDGH8wSou8q0bfGxplYcpaHRerG/J/zS/edLTnrjvDo7PHv1Nhy3lZMnHg0MO2JAAAAAElFTkSuQmCC);
    background-color: #566171;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6e7d8f), color-stop(1, #404854));
    background-image: -webkit-linear-gradient(top, #6e7d8f, #404854);
    background-image: -moz-linear-gradient(top, #6e7d8f, #404854);
    background-image: -o-linear-gradient(top, #6e7d8f, #404854);
    background-image: linear-gradient(#6e7d8f, #404854);
}

.swMain-fixed>ul li {
    display: table-cell;
    text-align: center;
    width: 1%
}

.swMain-fixed>ul li>a:before {
    border-top: 4px solid #c8c7cc;
    content: "";
    display: block;
    font-size: 0;
    height: 1px;
    overflow: hidden;
    position: relative;
    top: 21px;
    width: 100%;
    z-index: 1
}

.swMain-fixed>ul li>a:hover span {
    color: #fff;
}

.swMain-fixed>ul li:first-child>a:before {
    left: 50%;
    max-width: 51%
}

.swMain-fixed>ul li:last-child>a:before {
    max-width: 50%;
    width: 50%
}

.swMain-fixed li>a.done:before,
.swMain-fixed>ul li>a.selected:before {
    border-color: #d43f3a
}

.swMain-fixed>ul .stepNumber {
    background-color: #fff;
    border: 5px solid #c8c7cc;
    border-radius: 100%;
    color: #d43f3a;
    display: inline-block;
    font-size: 15px;
    height: 40px;
    line-height: 30px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index: 2
}

.swMain-fixed>ul li>a.selected .stepNumber {
    border-color: #d43f3a
}

.swMain-fixed ul li>a.done .stepNumber,
.swMain-fixed>ul li:last-child>a.selected .stepNumber {
    border-color: #d43f3a;
    background-color: #fff;
    color: #d43f3a;
}

.swMain-fixed ul li>a.done .stepNumber:before,
.swMain-fixed>ul li:last-child>a.selected .stepNumber:before {
    display: inline;
    float: right;
    font-family: FontAwesome;
    font-weight: 300;
    height: auto;
    text-shadow: none;
    margin-right: 7px;
    text-indent: 0;
    color: #fff;
}

.swMain-fixed ul li>a.done.wait .stepNumber {
    background-color: #F6F6F6 !important;
    color: #CCC !important;
    text-indent: 0 !important
}

.swMain-fixed ul li>a.done.wait .stepNumber:before {
    content: "" !important
}

.swMain-fixed>ul li .stepDesc {
    color: #8e8e93;
    display: block;
    font-size: 14px;
    margin-top: 4px;
    max-width: 100%;
    table-layout: fixed;
    text-align: center;
    word-wrap: break-word;
    z-index: 104;
    /**/
    font-size: 85% !important;
    padding: .4em .6em !important;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-fixed li>a.done .stepDesc,
.swMain-fixed>ul li>a.selected .stepDesc {
    font-size: 85% !important;
    padding: .4em .6em !important;
    color: #fff;
    vertical-align: baseline;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-fixed>ul li>a:hover {
    text-decoration: none
}

.swMain-fixed>ul li>a.disabled {
    cursor: default
}

.swMain-fixed .progress {
    margin-bottom: 30px
}

.swMain-fixed .stepContainer {
    height: auto !important
}

.swMain-fixed .close,
.swMain-fixed .loader,
.swMain-fixed [class*=" button"],
.swMain-fixed [class^=button] {
    display: none
}

.swMain-new:before {
    display: table;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    /*** add **/
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAICAIAAAC3eAIWAAAAA3NCSVQICAjb4U/gAAAAI0lEQVQImWPwj0hh+v//PxPD//9M////Z/rP8J/p//9/MD4AGUETB+SFfCsAAAAASUVORK5CYII=);
    background-color: #03178a;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #03178a), color-stop(1, #23a6d5));
    background-image: -webkit-linear-gradient(top, #03178a, #23a6d5);
    background-image: -moz-linear-gradient(top, #03178a, #23a6d5);
    background-image: -o-linear-gradient(top, #03178a, #23a6d5);
    background-image: linear-gradient(#03178a, #23a6d5);
    -moz-box-shadow: inset 0 2px 0 #ee7752, inset 0 1px 0 #6b7888;
    -webkit-box-shadow: inset 0 2px 0 #ee7752, inset 0 1px 0 #6b7888;
    box-shadow: inset 0 2px 0 #ee7752, inset 0 1px 0 #6b7888;
    height: 8px;
}

.swMain-new>ul {
    display: table;
    list-style: none;
    margin: 0;
    padding: 5px 0;
    position: relative;
    width: 100%;
    background: #f7f7f8;
    border-radius: 0px;
    /***/
    border-bottom: 1px solid #252A30;
    border-top: 1px solid #252A30;
    -moz-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABNCAIAAADo7ZnJAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQYlXWPyRGAMAwDd1wwHVADJS+POERk4OVD1mGO8yq1wFIKLXHsJLDGH8wSou8q0bfGxplYcpaHRerG/J/zS/edLTnrjvDo7PHv1Nhy3lZMnHg0MO2JAAAAAElFTkSuQmCC);
    background-color: #566171;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #03178a), color-stop(1, #23a6d5));
    background-image: -webkit-linear-gradient(top, #03178a, #23a6d5);
    background-image: -moz-linear-gradient(top, #03178a, #23a6d5);
    background-image: -o-linear-gradient(top, #03178a, #23a6d5);
    background-image: linear-gradient(#03178a, #23a6d5);
}

.swMain-new>ul li {
    display: table-cell;
    text-align: center;
    width: 1%
}

.swMain-new>ul li>a:before {
    border-top: 4px solid #c8c7cc;
    content: "";
    display: block;
    font-size: 0;
    height: 1px;
    overflow: hidden;
    position: relative;
    top: 21px;
    width: 100%;
    z-index: 1
}

.swMain-new>ul li>a:hover span {
    color: #fff;
}

.swMain-new>ul li:first-child>a:before {
    left: 50%;
    max-width: 51%
}

.swMain-new>ul li:last-child>a:before {
    max-width: 50%;
    width: 50%
}

.swMain-new li>a.done:before,
.swMain-new>ul li>a.selected:before {
    border-color: #d43f3a
}

.swMain-new>ul .stepNumber {
    background-color: #fff;
    border: 5px solid #c8c7cc;
    border-radius: 100%;
    color: #d43f3a;
    display: inline-block;
    font-size: 15px;
    height: 40px;
    line-height: 30px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index: 2
}

.swMain-new>ul li>a.selected .stepNumber {
    border-color: #d43f3a
}

.swMain-new ul li>a.done .stepNumber,
.swMain-new>ul li:last-child>a.selected .stepNumber {
    border-color: #d43f3a;
    background-color: #fff;
    color: #d43f3a;
}

.swMain-new ul li>a.done .stepNumber:before,
.swMain-new>ul li:last-child>a.selected .stepNumber:before {
    display: inline;
    float: right;
    font-family: FontAwesome;
    font-weight: 300;
    height: auto;
    text-shadow: none;
    margin-right: 7px;
    text-indent: 0;
    color: #fff;
}

.swMain-new ul li>a.done.wait .stepNumber {
    background-color: #F6F6F6 !important;
    color: #CCC !important;
    text-indent: 0 !important
}

.swMain-new ul li>a.done.wait .stepNumber:before {
    content: "" !important
}

.swMain-new>ul li .stepDesc {
    color: #8e8e93;
    display: block;
    font-size: 14px;
    margin-top: 4px;
    max-width: 100%;
    table-layout: fixed;
    text-align: center;
    word-wrap: break-word;
    z-index: 104;
    /**/
    font-size: 85% !important;
    padding: .4em .6em !important;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-new li>a.done .stepDesc,
.swMain-new>ul li>a.selected .stepDesc {
    font-size: 85% !important;
    padding: .4em .6em !important;
    color: #fff;
    vertical-align: baseline;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-new>ul li>a:hover {
    text-decoration: none
}

.swMain-new>ul li>a.disabled {
    cursor: default
}

.swMain-new .progress {
    margin-bottom: 30px
}

.swMain-new .stepContainer {
    height: auto !important
}

.swMain-new .close,
.swMain-new .loader,
.swMain-new [class*=" button"],
.swMain-new [class^=button] {
    display: none
}

.editedMenu>ul {
    display: table;
    list-style: none;
    margin: 0px;
    padding: 0px 0px;
    position: relative;
    width: 100%;
    background: none;
    border-radius: 5px
}

.editedMenu>ul li {
    display: table-cell;
    text-align: center;
    width: 1%
}

.editedMenu>ul li>a:before {
    border-top: 4px solid #c8c7cc;
    content: "";
    display: block;
    font-size: 0;
    height: 1px;
    overflow: hidden;
    position: relative;
    top: 21px;
    width: 100%;
    z-index: 1
}

.editedMenu>ul li.noline>a:before {
    border-top: 4px solid #5B9BD1;
    content: "";
    display: block;
    font-size: 0;
    height: 1px;
    overflow: hidden;
    position: relative;
    top: 21px;
    width: 0px;
    z-index: 1
}

.editedMenu>ul li:first-child>a:before {
    left: 50%;
    max-width: 51%
}

.editedMenu>ul li:last-child>a:before {
    max-width: 50%;
    width: 50%
}

.editedMenu li>a.done:before,
.editedMenu>ul li>a.selected:before {
    border-color: #e06400;
}

.editedMenu>ul .stepNumber {
    background-color: #fff;
    border: 5px solid #c8c7cc;
    border-radius: 100%;
    color: #58748B;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    height: 40px;
    line-height: 30px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index: 2
}

.editedMenu>ul li>a.selected .stepNumber {
    border-color: #e06400;
    background-color: #e06400;
    color: #fff;
}

.editedMenu ul li>a.done .stepNumber,
.editedMenu>ul li:last-child>a.selected .stepNumber {
    border-color: #e06400;
    background-color: #e06400;
    color: #fff;
}

.editedMenu ul li>a.done .stepNumber:before,
.editedMenu>ul li:last-child>a.selected .stepNumber:before {
    display: inline;
    float: right;
    font-family: FontAwesome;
    font-weight: 300;
    height: auto;
    text-shadow: none;
    margin-right: 7px;
    text-indent: 0;
    color: #fff;
}

.editedMenu ul li>a.done.wait .stepNumber {
    background-color: #F6F6F6 !important;
    color: #CCC !important;
    text-indent: 0 !important
}

.editedMenu ul li>a.done.wait .stepNumber:before {
    content: "" !important
}

.editedMenu>ul li .stepDesc {
    color: #8e8e93;
    display: block;
    font-size: 14px;
    margin-top: 4px;
    max-width: 100%;
    table-layout: fixed;
    text-align: center;
    word-wrap: break-word;
    z-index: 104
}

.editedMenu li>a.done .stepDesc,
.editedMenu>ul li>a.selected .stepDesc {
    color: #e06400;
}

.editedMenu>ul li>a:hover {
    text-decoration: none
}

.editedMenu>ul li>a.disabled {
    cursor: default
}

.editedMenu .progress {
    margin-bottom: 30px
}

.editedMenu .stepContainer {
    height: auto !important
}

.editedMenu .close,
.editedMenu .loader,
.editedMenu [class*=" button"],
.editedMenu [class^=button] {
    display: none
}

.checkbox-position {
    margin-right: 10px !important;
    margin-top: 3px !important;
    margin-left: 5px !important;
    margin-bottom: 1px !important;
}


/** menu vertical small **/

.swMain-vertical-small:before {
    display: table;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 50px;
    text-align: center;
    height: 8px;
}

.swMain-vertical-small>ul {
    display: table;
    list-style: none;
    margin: 0;
    padding: 5px 0;
    position: relative;
    width: 100%;
    background: none;
    border-radius: 0px;
}

.swMain-vertical-small>ul li {
    display: table;
    text-align: center;
    width: 100%;
    height: 10px
}

.swMain-vertical-small>ul li>a:before {
    content: "";
    display: table;
    font-size: 0;
    height: 15px;
    overflow: hidden;
    position: relative;
    top: 80px;
    left: 50%;
    z-index: 1;
    text-align: center;
}

.swMain-vertical-small>ul li>a:hover span {
    color: #fff;
}

.swMain-vertical-small>ul li:first-child>a:after {
    left: 50%;
    width: 100%;
    max-width: 100%
}

.swMain-vertical-small>ul li:last-child>a:before {
    left: 50%;
    max-width: 50%;
    width: 50%
}

.swMain-vertical-small li>a.done:before,
.swMain-vertical-small>ul li>a.selected:before {
    border-color: #d43f3a
}

.swMain-vertical-small>ul .stepNumber {
    background-color: #fff;
    border: 5px solid #c8c7cc;
    border-radius: 100%;
    color: #d43f3a;
    display: inline-block;
    font-size: 20px;
    height: 55px;
    line-height: 45px;
    position: relative;
    text-align: center;
    width: 55px;
    z-index: 2
}

.swMain-vertical-small>ul li>a.selected .stepNumber {
    border-color: #d43f3a
}

.swMain-vertical-small ul li>a.done .stepNumber,
.swMain-vertical-small>ul li:last-child>a.selected .stepNumber {
    border-color: #d43f3a;
    background-color: #fff;
    color: #d43f3a;
}

.swMain-vertical-small ul li>a.done .stepNumber:before,
.swMain-vertical-small>ul li:last-child>a.selected .stepNumber:before {
    display: inline;
    float: right;
    font-family: FontAwesome;
    font-weight: 300;
    height: auto;
    text-shadow: none;
    margin-right: 7px;
    text-indent: 0;
    color: #fff;
}

.swMain-vertical-small ul li>a.done.wait .stepNumber {
    background-color: #F6F6F6 !important;
    color: #CCC !important;
    text-indent: 0 !important
}

.swMain-vertical-small ul li>a.done.wait .stepNumber:before {
    content: "" !important
}

.swMain-vertical-small>ul li .stepDesc {
    color: #8e8e93;
    display: block;
    font-size: 14px;
    margin-top: 4px;
    max-width: 100%;
    table-layout: fixed;
    text-align: center;
    word-wrap: break-word;
    z-index: 104;
    /**/
    font-size: 85% !important;
    padding: .4em .6em !important;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-vertical-small li>a.done .stepDesc,
.swMain-vertical-small>ul li>a.selected .stepDesc {
    font-size: 85% !important;
    padding: .4em .6em !important;
    color: #fff;
    vertical-align: baseline;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-vertical-small>ul li>a:hover {
    text-decoration: none
}

.swMain-vertical-small>ul li>a.disabled {
    cursor: default
}

.swMain-vertical-small .progress {
    margin-bottom: 30px
}

.swMain-vertical-small .stepContainer {
    height: auto !important
}

.swMain-vertical-small .close,
.swMain-vertical-small .loader,
.swMain-vertical-small [class*=" button"],
.swMain-vertical-small [class^=button] {
    display: none
}


/******/


.swMain-vertical-small-X:before {
    display: table;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 110px;
    text-align: center;
    height: 5px;
}

.swMain-vertical-small-X>ul {
    display: table;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: relative;
    width: 100%;
    background: none;
    border-radius: 0px;
}

.swMain-vertical-small-X>ul li {
    display: table;
    text-align: center;
    width: 100%;
    height: 10px
}

.swMain-vertical-small-X>ul li>a:before {
    content: "";
    display: table;
    font-size: 0;
    height: 15px;
    overflow: hidden;
    position: relative;
    top: 10px;
    left: 10%;
    z-index: 1;
    text-align: center;
}

.swMain-vertical-small-X>ul li>a:hover span {
    color: #fff;
}

.swMain-vertical-small-X>ul li:first-child>a:after {
    left: 50%;
    width: 100%;
    max-width: 100%
}

.swMain-vertical-small-X>ul li:last-child>a:before {
    left: 50%;
    max-width: 50%;
    width: 50%
}

.swMain-vertical-small-X li>a.done:before,
.swMain-vertical-small-X>ul li>a.selected:before {
    border-color: #d43f3a
}

.swMain-vertical-small-X>ul .stepNumber {
    background-color: #fff;
    border: 5px solid #c8c7cc;
    border-radius: 100%;
    color: #d43f3a;
    display: inline-block;
    font-size: 20px;
    height: 45px;
    line-height: 30px;
    position: relative;
    text-align: center;
    width: 45px;
    z-index: 2
}

.swMain-vertical-small-X>ul li>a.selected .stepNumber {
    border-color: #d43f3a
}

.swMain-vertical-small-X ul li>a.done .stepNumber,
.swMain-vertical-small-X>ul li:last-child>a.selected .stepNumber {
    border-color: #d43f3a;
    background-color: #fff;
    color: #d43f3a;
}

.swMain-vertical-small-X ul li>a.done .stepNumber:before,
.swMain-vertical-small-X>ul li:last-child>a.selected .stepNumber:before {
    display: inline;
    float: right;
    font-family: FontAwesome;
    font-weight: 300;
    height: auto;
    text-shadow: none;
    margin-right: 7px;
    text-indent: 0;
    color: #fff;
}

.swMain-vertical-small-X ul li>a.done.wait .stepNumber {
    background-color: #F6F6F6 !important;
    color: #CCC !important;
    text-indent: 0 !important
}

.swMain-vertical-small-X ul li>a.done.wait .stepNumber:before {
    content: "" !important
}

.swMain-vertical-small-X>ul li .stepDesc {
    color: #8e8e93;
    display: block;
    font-size: 10px;
    margin-top: 4px;
    max-width: 100%;
    table-layout: fixed;
    text-align: center;
    word-wrap: break-word;
    z-index: 104;
    padding: .4em .6em !important;
    border-radius: .25em;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-vertical-small-X li>a.done .stepDesc,
.swMain-vertical-small-X>ul li>a.selected .stepDesc {
    padding: .4em .6em !important;
    color: #fff;
    vertical-align: baseline;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-vertical-small-X>ul li>a:hover {
    text-decoration: none
}

.swMain-vertical-small-X>ul li>a.disabled {
    cursor: default
}

.swMain-vertical-small-X .progress {
    margin-bottom: 30px
}

.swMain-vertical-small-X .stepContainer {
    height: auto !important
}

.swMain-vertical-small-X .close,
.swMain-vertical-small-X .loader,
.swMain-vertical-small-X [class*=" button"],
.swMain-vertical-small-X [class^=button] {
    display: none
}


/** sdf sdf **/

.swMain-vertical:before {
    display: table;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 70px;
    text-align: center;
    height: 8px;
}

.swMain-vertical>ul {
    display: table;
    list-style: none;
    margin: 0;
    padding: 5px 0;
    position: relative;
    width: 100%;
    background: none;
    border-radius: 0px;
}

.swMain-vertical>ul li {
    display: table;
    text-align: center;
    width: 100%;
    height: 10px
}

.swMain-vertical>ul li>a:before {
    content: "";
    display: table;
    font-size: 0;
    height: 30px;
    overflow: hidden;
    position: relative;
    top: 80px;
    left: 50%;
    z-index: 1;
    text-align: center;
}

.swMain-vertical>ul li>a:hover span {
    color: #fff;
}

.swMain-vertical>ul li:first-child>a:after {
    left: 50%;
    width: 100%;
    max-width: 100%
}

.swMain-vertical>ul li:last-child>a:before {
    left: 50%;
    max-width: 50%;
    width: 50%
}

.swMain-vertical li>a.done:before,
.swMain-vertical>ul li>a.selected:before {
    border-color: #d43f3a
}

.swMain-vertical>ul .stepNumber {
    background-color: #fff;
    border: 5px solid #c8c7cc;
    border-radius: 100%;
    color: #d43f3a;
    display: inline-block;
    font-size: 25px;
    height: 60px;
    line-height: 50px;
    position: relative;
    text-align: center;
    width: 60px;
    z-index: 2
}

.swMain-vertical>ul li>a.selected .stepNumber {
    border-color: #d43f3a
}

.swMain-vertical ul li>a.done .stepNumber,
.swMain-vertical>ul li:last-child>a.selected .stepNumber {
    border-color: #d43f3a;
    background-color: #fff;
    color: #d43f3a;
}

.swMain-vertical ul li>a.done .stepNumber:before,
.swMain-vertical>ul li:last-child>a.selected .stepNumber:before {
    display: inline;
    float: right;
    font-family: FontAwesome;
    font-weight: 300;
    height: auto;
    text-shadow: none;
    margin-right: 7px;
    text-indent: 0;
    color: #fff;
}

.swMain-vertical ul li>a.done.wait .stepNumber {
    background-color: #F6F6F6 !important;
    color: #CCC !important;
    text-indent: 0 !important
}

.swMain-vertical ul li>a.done.wait .stepNumber:before {
    content: "" !important
}

.swMain-vertical>ul li .stepDesc {
    color: #8e8e93;
    display: block;
    font-size: 14px;
    margin-top: 4px;
    max-width: 100%;
    table-layout: fixed;
    text-align: center;
    word-wrap: break-word;
    z-index: 104;
    /**/
    font-size: 85% !important;
    padding: .4em .6em !important;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-vertical li>a.done .stepDesc,
.swMain-vertical>ul li>a.selected .stepDesc {
    font-size: 85% !important;
    padding: .4em .6em !important;
    color: #fff;
    vertical-align: baseline;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-vertical>ul li>a:hover {
    text-decoration: none
}

.swMain-vertical>ul li>a.disabled {
    cursor: default
}

.swMain-vertical .progress {
    margin-bottom: 30px
}

.swMain-vertical .stepContainer {
    height: auto !important
}

.swMain-vertical .close,
.swMain-vertical .loader,
.swMain-vertical [class*=" button"],
.swMain-vertical [class^=button] {
    display: none
}


/** report menu **/

.swMain-vertical-desc:before {
    display: table;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 70px;
    text-align: center;
    height: 8px;
}

.swMain-vertical-desc>ul {
    display: table;
    list-style: none;
    margin: 0;
    padding: 5px 0;
    position: relative;
    width: 100%;
    background: none;
    border-radius: 0px;
}

.swMain-vertical-desc>ul li {
    display: inline-block;
    text-align: left;
    width: 100%;
    height: 10px
}

.swMain-vertical-desc>ul li>a:before {
    content: "";
    display: table;
    font-size: 0;
    height: 30px;
    overflow: hidden;
    position: relative;
    top: 80px;
    left: 50%;
    z-index: 1;
    text-align: center;
}

.swMain-vertical-desc>ul li>a:hover span {
    color: #fff;
}

.swMain-vertical-desc>ul li:first-child>a:after {
    left: 50%;
    width: 100%;
    max-width: 100%
}

.swMain-vertical-desc>ul li:last-child>a:before {
    left: 50%;
    max-width: 50%;
    width: 50%
}

.swMain-vertical-desc li>a.done:before,
.swMain-vertical-desc>ul li>a.selected:before {
    border-color: #d43f3a
}

.swMain-vertical-desc>ul .stepNumber {
    background-color: #fff;
    border: 5px solid #c8c7cc;
    border-radius: 100%;
    color: #d43f3a;
    display: inline-block;
    font-size: 25px;
    height: 60px;
    line-height: 50px;
    position: relative;
    text-align: center;
    width: 60px;
    z-index: 2
}

.swMain-vertical-desc>ul li>a.selected .stepNumber {
    border-color: #d43f3a
}

.swMain-vertical-desc ul li>a.done .stepNumber,
.swMain-vertical-desc>ul li:last-child>a.selected .stepNumber {
    border-color: #d43f3a;
    background-color: #fff;
    color: #d43f3a;
}

.swMain-vertical-desc ul li>a.done .stepNumber:before,
.swMain-vertical-desc>ul li:last-child>a.selected .stepNumber:before {
    display: inline;
    float: right;
    font-family: FontAwesome;
    font-weight: 300;
    height: auto;
    text-shadow: none;
    margin-right: 7px;
    text-indent: 0;
    color: #fff;
}

.swMain-vertical-desc ul li>a.done.wait .stepNumber {
    background-color: #F6F6F6 !important;
    color: #f0f0f0 !important;
    text-indent: 0 !important
}

.swMain-vertical-desc ul li>a.done.wait .stepNumber:before {
    content: "" !important
}

.swMain-vertical-desc>ul li .stepDesc {
    color: #585858;
    display: inline;
    font-size: 1.1em;
    margin-top: 4px;
    max-width: 100%;
    table-layout: fixed;
    text-align: center;
    word-wrap: break-word;
    z-index: 104;
    padding: .4em .6em !important;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-vertical-desc li>a.done .stepDesc,
.swMain-vertical-desc>ul li>a.selected .stepDesc {
    font-size: 1.3em !important;
    padding: .4em .6em !important;
    color: #fff;
    vertical-align: baseline;
    border-radius: .25em;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center
}

.swMain-vertical-desc>ul li>a:hover {
    text-decoration: none
}

.swMain-vertical-desc>ul li>a.disabled {
    cursor: default
}

.swMain-vertical-desc .progress {
    margin-bottom: 30px
}

.swMain-vertical-desc .stepContainer {
    height: auto !important
}

.swMain-vertical-desc .close,
.swMain-vertical-desc .loader,
.swMain-vertical-desc [class*=" button"],
.swMain-vertical-desc [class^=button] {
    display: none
}

.nav-tabs {
    margin-bottom: 0;
    padding: 0
}

.nav-tabs.nav-justified>li>a {
    border-left: none !important;
    border-radius: 0;
    border-top: none !important;
    border-right: none !important
}

.nav-tabs>li {
    margin-bottom: -3px;
    text-align: center
}

.nav-tabs>li.dropdown.active a {
    cursor: pointer
}

.nav-tabs>li.dropdown .dropdown-menu>.active a,
.nav-tabs>li.dropdown .dropdown-menu>.active a:focus,
.nav-tabs>li.dropdown .dropdown-menu>.active a:hover {
    background-color: #f7f7f8;
    color: #fff
}

.nav-tabs>li>a {
    border: 0;
    border-radius: 0;
    color: #8E9AA2;
    min-width: 70px;
    padding: 15px 20px
}

.nav-tabs>li.active a,
.nav-tabs>li.active a:focus,
.nav-tabs>li.active a:hover {
    border-width: 1px
}

.nav-tabs>.active a,
.nav-tabs>.active a:focus,
.nav-tabs>.active a:hover {
    border: 0;
    -moz-box-shadow: 1px 1px 2px rgba(44, 47, 59, .1);
    -webkit-box-shadow: 1px 1px 2px rgba(44, 47, 59, .1);
    box-shadow: 1px 1px 2px rgba(44, 47, 59, .1);
    color: #505458
}

.tabs-style-fillup-pc nav ul {
    padding: 0;
    max-width: none;
    box-shadow: inset 0 -2px #d1d3d2;
}

.tabs-style-fillup-pc nav ul li a {
    padding: 1.9em 0;
    border-right: 1px solid #c2c2c2;
    line-height: 1;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAICAIAAAC3eAIWAAAAA3NCSVQICAjb4U/gAAAAI0lEQVQImWPwj0hh+v//PxPD//9M////Z/rP8J/p//9/MD4AGUETB+SFfCsAAAAASUVORK5CYII=);
    background-color: #afafaf;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e4e4e4), color-stop(1, #c7c7c7));
    background-image: -webkit-linear-gradient(top, #e4e4e4, #c7c7c7);
    background-image: -moz-linear-gradient(top, #e4e4e4, #c7c7c7);
    background-image: -o-linear-gradient(top, #e4e4e4, #c7c7c7);
    background-image: linear-gradient(#e4e4e4, #c7c7c7);
}

.tabs-style-fillup-pc nav ul li:last-child a {
    border: none;
}

.tabs-style-fillup-pc nav ul li.tab-current {
    z-index: 100;
}

.tabs-style-fillup-pc nav ul li.tab-current a {
    color: #fff;
    box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABNCAIAAADo7ZnJAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQYlXWPyRGAMAwDd1wwHVADJS+POERk4OVD1mGO8yq1wFIKLXHsJLDGH8wSou8q0bfGxplYcpaHRerG/J/zS/edLTnrjvDo7PHv1Nhy3lZMnHg0MO2JAAAAAElFTkSuQmCC);
    background-color: #566171;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6e7d8f), color-stop(1, #404854));
    background-image: -webkit-linear-gradient(top, #6e7d8f, #404854);
    background-image: -moz-linear-gradient(top, #6e7d8f, #404854);
    background-image: -o-linear-gradient(top, #6e7d8f, #404854);
    background-image: linear-gradient(#6e7d8f, #404854);
}

.tabs-style-fillup-pc nav ul li a::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    height: calc(100% + 1px);
    border: 1px solid #2CC185;
    background: #2CC185;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.tabs-style-fillup-pc nav ul li.tab-current a::after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tabs-style-fillup-pc nav ul li a span,
.tabs-style-fillup-pc .icon::before {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
}

.tabs-style-fillup-pc nav ul li a span {
    display: block;
    font-weight: 700;
    font-size: 0.7em;
    line-height: 1.5;
}

.tabs-style-fillup-pc .icon::before {
    display: block;
    margin: 0;
}

.tabs-style-fillup-pc nav ul li.tab-current a span,
.tabs-style-fillup-pc li.tab-current .icon::before {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}


/* ---------- */

.tabs-style-fillup-01 nav ul {
    padding: 0;
    max-width: none;
    box-shadow: inset 0 -2px #d1d3d2;
}

.tabs-style-fillup-01 nav ul li a {
    padding: 1.9em 0;
    border-right: 1px solid #c2c2c2;
    line-height: 1;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAICAIAAAC3eAIWAAAAA3NCSVQICAjb4U/gAAAAI0lEQVQImWPwj0hh+v//PxPD//9M////Z/rP8J/p//9/MD4AGUETB+SFfCsAAAAASUVORK5CYII=);
    background-color: #afafaf;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e4e4e4), color-stop(1, #c7c7c7));
    background-image: -webkit-linear-gradient(top, #e4e4e4, #c7c7c7);
    background-image: -moz-linear-gradient(top, #e4e4e4, #c7c7c7);
    background-image: -o-linear-gradient(top, #e4e4e4, #c7c7c7);
    background-image: linear-gradient(#e4e4e4, #c7c7c7);
}

.tabs-style-fillup-01 nav ul li:last-child a {
    border: none;
}

.tabs-style-fillup-01 nav ul li.tab-current {
    z-index: 100;
}

.tabs-style-fillup-01 nav ul li.tab-current a {
    color: #fff;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAICAIAAAC3eAIWAAAAA3NCSVQICAjb4U/gAAAAI0lEQVQImWPwj0hh+v//PxPD//9M////Z/rP8J/p//9/MD4AGUETB+SFfCsAAAAASUVORK5CYII=);
    background-color: #04bd8f;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #04bd8f), color-stop(1, #00703c));
    background-image: -webkit-linear-gradient(top, #04bd8f, #00703c);
    background-image: -moz-linear-gradient(top, #04bd8f, #00703c);
    background-image: -o-linear-gradient(top, #04bd8f, #00703c);
    background-image: linear-gradient(#04bd8f, #00703c);
}

.tabs-style-fillup-01 nav ul li a::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    height: calc(100% + 1px);
    border: 1px solid #2CC185;
    background: #2CC185;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.tabs-style-fillup-01 nav ul li.tab-current a::after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tabs-style-fillup-01 nav ul li a span,
.tabs-style-fillup-01 .icon::before {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
}

.tabs-style-fillup-01 nav ul li a span {
    display: block;
    font-weight: 700;
    font-size: 0.7em;
    line-height: 1.5;
}

.tabs-style-fillup-01 .icon::before {
    display: block;
    margin: 0;
}

.tabs-style-fillup-01 nav ul li.tab-current a span,
.tabs-style-fillup-01 li.tab-current .icon::before {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}


/* ---------------------------------------------------------------------- */


/*  9 - links custom
/* ---------------------------------------------------------------------- */


/* Effect 3: bottom line slides/fades in */

.cl-effect-3-theo a {
    padding: 8px 0;
    color: #ffffff
}

.cl-effect-3-theo a::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: opacity 0.3s, -moz-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    transform: translateY(10px);
    border-radius: 23px;
}

.cl-effect-3-theo a:hover::after,
.cl-effect-3-theo a:focus::after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}


/** click effect **/

a.effect1 {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

a.effect1::before,
a.effect1::after {
    content: '';
    position: absolute;
    width: 100%;
    font-size: 0.9em;
    left: 0;
}

a.effect1::before {
    background-color: #4299b9;
    text-decoration: underline;
    height: 2px;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

a.effect1::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 100% 50%;
    transform: translate3d(200%, 0, 0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    color: #4299b9;
}

a.effect1:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

a.effect1:hover::after {
    transform: translate3d(0, 0, 0);
}

a.effect1 span {
    display: inline-block;
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

a.effect1:hover span {
    transform: translate3d(-200%, 0, 0);
}

.middle .value {
    font-size: 22px;
    font-weight: 600;
}

.middle i {
    vertical-align: middle;
    padding-bottom: 15px;
}

.middle a {
    vertical-align: middle;
    padding-bottom: 0px;
}

.middle .percentage {
    vertical-align: middle;
    font-size: 15px;
    padding-bottom: 5px;
}

.middle img {
    display: block;
    position: relative;
    width: 100%;
}

.img-set {
    width: 45px;
}

.liner {
    display: flex;
    align-items: flex-start;
    text-align: left;

    &:after {
        content: '';
        flex-grow: 1;
        height: 2px;
        background: #dfdfdf;
        min-width: 20px;
        margin: auto;
    }

    &:after {
        margin-left: 20px;
    }
}

.text-white {
    color: #ffffff;
}

:root {
    --glow-color: hsl(186 100% 69%);
}

.glowing-btn {
    position: relative;
    color: var(--glow-color);
    cursor: pointer;
    padding: 0.35em 1em;
    border: 0.15em solid var(--glow-color);
    border-radius: 0.45em;
    background: none;
    perspective: 2em;
    font-family: "Raleway", sans-serif;
    font-size: 2em;
    font-weight: 900;
    letter-spacing: 1em;
    -webkit-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color), 0px 0px 0.5em 0px var(--glow-color);
    -moz-box-shadow: inset 0px 0px 0.5em 0px var(--glow-color), 0px 0px 0.5em 0px var(--glow-color);
    box-shadow: inset 0px 0px 0.5em 0px var(--glow-color), 0px 0px 0.5em 0px var(--glow-color);
    animation: border-flicker 2s linear infinite;
}

.glowing-txt {
    float: left;
    margin-right: -0.8em;
    -webkit-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--glow-color);
    -moz-text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--glow-color);
    text-shadow: 0 0 0.125em hsl(0 0% 100% / 0.3), 0 0 0.45em var(--glow-color);
    animation: text-flicker 3s linear infinite;
}

.faulty-letter {
    opacity: 0.5;
    animation: faulty-flicker 2s linear infinite;
}

.glowing-btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.7;
    filter: blur(1em);
    transform: translateY(120%) rotateX(95deg) scale(1, 0.35);
    background: var(--glow-color);
    pointer-events: none;
}

.glowing-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    background-color: var(--glow-color);
    box-shadow: 0 0 2em 0.2em var(--glow-color);
    transition: opacity 100ms linear;
}

.glowing-btn:hover {
    color: rgba(0, 0, 0, 0.8);
    text-shadow: none;
    animation: none;
}

.glowing-btn:hover .glowing-txt {
    animation: none;
}

.glowing-btn:hover .faulty-letter {
    animation: none;
    text-shadow: none;
    opacity: 1;
}

.glowing-btn:hover:before {
    filter: blur(1.5em);
    opacity: 1;
}

.glowing-btn:hover:after {
    opacity: 1;
}

@keyframes faulty-flicker {
    0% {
        opacity: 0.1;
    }

    2% {
        opacity: 0.1;
    }

    4% {
        opacity: 0.5;
    }

    19% {
        opacity: 0.5;
    }

    21% {
        opacity: 0.1;
    }

    23% {
        opacity: 1;
    }

    80% {
        opacity: 0.5;
    }

    83% {
        opacity: 0.4;
    }

    87% {
        opacity: 1;
    }
}

@keyframes text-flicker {
    0% {
        opacity: 0.1;
    }

    2% {
        opacity: 1;
    }

    8% {
        opacity: 0.1;
    }

    9% {
        opacity: 1;
    }

    12% {
        opacity: 0.1;
    }

    20% {
        opacity: 1;
    }

    25% {
        opacity: 0.3;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 0.7;
    }

    72% {
        opacity: 0.2;
    }

    77% {
        opacity: 0.9;
    }

    100% {
        opacity: 0.9;
    }
}

@keyframes border-flicker {
    0% {
        opacity: 0.1;
    }

    2% {
        opacity: 1;
    }

    4% {
        opacity: 0.1;
    }

    8% {
        opacity: 1;
    }

    70% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 600px) {
    .glowing-btn {
        font-size: 1em;
    }
}


/* ---------------------------------------------------------------------- */


/*  10 -  etc
/* ---------------------------------------------------------------------- */

.row-fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    width: 100%
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.pl3,
.px-3 {
    padding-left: 1rem !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mt-3,
.my-3 {
    margin-top: 0.75rem !important;
}

.ml-r {
    margin-right: 0.75rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.00rem !important;
}

.my-0 {
    margin-bottom: 0 !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }

    .m-md-n1 {
        margin: -0.25rem !important;
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -0.25rem !important;
    }

    .m-md-n2 {
        margin: -0.5rem !important;
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -0.5rem !important;
    }

    .m-md-n3 {
        margin: -1rem !important;
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important;
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important;
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important;
    }

    .m-md-n4 {
        margin: -1.5rem !important;
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important;
    }

    .m-md-n5 {
        margin: -3rem !important;
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important;
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important;
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
}

.pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
}

.pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.ftco-section {
    background-color: #73a189;
    height: 60px;
}

.ftco-section-line {
    background-color: #73a189;
    height: 60px;
    border-bottom: 1px solid #000;
}

.ftco-section-none {
    background-color: none !important;
    height: 80px;
}

.ftco-no-pt {
    padding-top: 0;
}

.ftco-no-pb {
    padding-bottom: 0;
}

.heading-section {
    font-size: 28px;
    color: #000;
}

.ftco-navbar-light {
    background: #252525 !important;
    z-index: 3;
    padding: 0;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light {
        background: #000 !important;
        position: relative;
        top: 0;
        padding: 10px 15px;
    }
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav {
        padding-bottom: 10px;
    }
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
    font-size: 11px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    opacity: 1 !important;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ff0000;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link:before {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover {
    color: #ff0000;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover:before {
    width: 100%;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
        padding-left: 0;
        padding-right: 0;
        padding-top: .7rem;
        padding-bottom: .7rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover {
        color: #fff;
    }
}

@media (max-width: 767.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu {
    border: none;
    background: #fff;
    -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    border-radius: 4px;
}

.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item {
    font-size: 12px;
    color: #000;
}

.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item:hover,
.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item:focus {
    background: #ff0000;
    color: #fff;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu {
        display: block !important;
        background: #000;
    }

    .ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
    }
}

.ftco-navbar-light .navbar-nav>.nav-item.cta>a {
    color: #fff;
    background: #ff0000;
    border-radius: 0px;
}

@media (max-width: 767.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item.cta>a {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item.cta>a {
        color: #fff;
        background: #ff0000;
        border-radius: 4px;
    }
}

.ftco-navbar-light .navbar-nav>.nav-item.active>a {
    color: #ff0000;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item.active>a {
        color: #fff;
    }
}

.ftco-navbar-light .navbar-toggler {
    border: none;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    padding-right: 0;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .1em;
}

.ftco-navbar-light .navbar-toggler:focus {
    outline: none !important;
}

.navbar-brand {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.navbar-brand span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.3);
}

.navbar-brand span.adjust {
    display: block;
    font-size: 100% !important;
    font-weight: 700 !important;
    color: yellow;

}

.navbar-brand:hover,
.navbar-brand:focus {
    color: #000;
}

.social-media {
    display: inline-block;
}

@media (max-width: 991.98px) {
    .social-media {
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .social-media {
        margin-bottom: 20px;
    }
}

.social-media p a {
    border: 1px solid #e6e6e6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.social-media p a span {
    color: #4d4d4d;
}

.social-media p a:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-media p a:hover span {
    color: #fff !important;
}

/****************************/

.searchform-modi {
    height: 35px;
    border: 1px solid #C8C8C8;
    overflow: hidden;
    border-radius: 35px;
}

@media (min-width: 992px) {
    .searchform-modi {
        width: 100%;
    }
}

.searchform-modi .form-control-modi {
    width: calc(100% - 35px);
    border: none;
    background: #fff !important;
    color: rgba(0, 0, 0, 0.7) !important;
    font-size: 14px;
}

.searchform-modi .form-control-modi::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3) !important;
}

.searchform-modi .form-control-modi::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.searchform-modi .form-control-modi:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.searchform-modi .form-control-modi:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.3) !important;
}

.searchform-modi .search {
    width: 35px;
    height: 35px;
    background: #ff0000 !important;
}

.searchform-modi .search span {
    font-size: 14px;
    color: #fff;
}

.searchform-modi .reset {
    width: 35px;
    height: 35px;
    background: #fff !important;
}

.searchform-modi .reset span {
    font-size: 14px;
    color: #aeacb4;
}

.form-control-modi {
    height: 35px !important;
    background: #fff !important;
    color: #000 !important;
    font-size: 12px;
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 100px;
}

.form-control-modi:focus,
.form-control-modi:active {
    box-shadow: none;
}

.form-control-modi {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control-modi {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.form-control-modi::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control-modi:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control-modi::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control-modi:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control-modi::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control-modi::placeholder {
    color: #6c757d;
    opacity: 1;
    padding-left: 2px;
}

.form-control-modi:disabled,
.form-control-modi[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

/****************************/

.searchform-fixed {
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border-radius: 40px;
}

@media (min-width: 992px) {
    .searchform-fixed {
        width: 100%;
    }
}

.searchform-fixed .form-control-fixed {
    width: calc(100% - 50px);
    border: none;
    background: #fff !important;
    color: rgba(0, 0, 0, 0.7) !important;
    font-size: 14px;
}

.searchform-fixed .form-control-fixed::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.3) !important;
}

.searchform-fixed .form-control-fixed::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.searchform-fixed .form-control-fixed:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.3) !important;
}

.searchform-fixed .form-control-fixed:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.3) !important;
}

.searchform-fixed .search {
    width: 50px;
    height: 50px;
    background: #ff0000 !important;
}

.searchform-fixed .search span {
    font-size: 16px;
    color: #fff;
}

.searchform-fixed .reset {
    width: 50px;
    height: 50px;
    background: #fff !important;
}

.searchform-fixed .reset span {
    font-size: 16px;
    color: #aeacb4;
}

.form-control-fixed {
    height: 50px !important;
    background: #fff !important;
    color: #000 !important;
    font-size: 14px;
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 100px;
}

.form-control-fixed:focus,
.form-control-fixed:active {
    box-shadow: none;
}

.form-control-fixed {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control-fixed {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.form-control-fixed::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control-fixed:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control-fixed::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control-fixed:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control-fixed::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control-fixed::placeholder {
    color: #6c757d;
    opacity: 1;
    padding-left: 2px;
}

.form-control-fixed:disabled,
.form-control-fixed[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.bg-gradian-dark {
    background: #0005;
    border-radius: 0px;
    border-bottom: 1px solid #252A30;
    border-top: 1px solid #252A30;
    -moz-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABNCAIAAADo7ZnJAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQYlXWPyRGAMAwDd1wwHVADJS+POERk4OVD1mGO8yq1wFIKLXHsJLDGH8wSou8q0bfGxplYcpaHRerG/J/zS/edLTnrjvDo7PHv1Nhy3lZMnHg0MO2JAAAAAElFTkSuQmCC);
    background-color: #566171;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6e7d8f), color-stop(1, #404854));
    background-image: -webkit-linear-gradient(top, #6e7d8f, #404854);
    background-image: -moz-linear-gradient(top, #6e7d8f, #404854);
    background-image: -o-linear-gradient(top, #6e7d8f, #404854);
    background-image: linear-gradient(#6e7d8f, #404854);
}



.applayout {
    border-spacing: 0;
    height: 100%;
    margin: 0 -15px;
}

.applayout .col {
    float: left;
    height: 100%;
    vertical-align: top;
}

.applayout .col-right {
    float: right;
    height: 100%;
    vertical-align: top;
}

.applayout .col-left {
    float: left;
    height: 100%;
    vertical-align: top;
}


.applayout .vertical-menu-290 {
    padding-left: 15px;
    width: 305px !important;
}

.applayout .vertical-menu-35 {
    padding-left: 15px;
    width: 45px !important;
}

.applayout .wrap-menu-290 {
    width: 289px;
    height: 100% !important;
    position: relative;
}


.applayout .wrap-menu-360 {
    width: 359px;
    height: 100% !important;
    position: relative;
}

.applayout .vertical-menu-365 {
    width: 365px !important;
    margin-left: 15px;
}


.applayout .content-left-250 {
    height: 100%;
    margin-left: 0px;
    margin-right: 15px;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #ffffff;
}


.applayout .wrap-menu-275 {
    width: 275px;
    height: 100% !important;
    position: relative;
}

.applayout .menu-list-mnt {
    list-style: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    bottom: 100px;
}

.applayout .menu-list-filt {
    list-style: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    bottom: 68px;
}

.applayout .content-reader-15 {
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #fff;
    margin-right: 0;
}

.applayout .content-reader {
    height: 100%;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #F8F8F8;
    margin-right: 30px;
    margin-left: 30px;
}

.applayout .wrap-menu-250 .panel-body {
    padding-left: 27px;
    padding-right: 27px
}

.applayout .wrap-menu {
    width: 149px;
    height: 100% !important;
    position: relative;
}

.applayout .vertical-menu-120 {
    width: 110px !important;
    border-left: 1px solid #252A30;
    -moz-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 0 #8799a9, 0 1px 1px rgba(0, 0, 0, 0.5);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABNCAIAAADo7ZnJAAAAA3NCSVQICAjb4U/gAAAAUUlEQVQYlXWPyRGAMAwDd1wwHVADJS+POERk4OVD1mGO8yq1wFIKLXHsJLDGH8wSou8q0bfGxplYcpaHRerG/J/zS/edLTnrjvDo7PHv1Nhy3lZMnHg0MO2JAAAAAElFTkSuQmCC);
    background-color: #566171;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6e7d8f), color-stop(1, #404854));
    background-image: -webkit-linear-gradient(top, #6e7d8f, #404854);
    background-image: -moz-linear-gradient(top, #6e7d8f, #404854);
    background-image: -o-linear-gradient(top, #6e7d8f, #404854);
    background-image: linear-gradient(#6e7d8f, #404854);
}


.applayout .wrap-menu-120 {
    width: 109px;
    height: 100% !important;
    position: relative;
}

/* .applayout .mnt-list {
    margin-left: 15px;
    margin-right: 15px;
    width: 299px;
    height: 100% !important;
    position: relative;
} */

.applayout .menu-list {
    border-left: 1px solid rgb(110, 110, 110);
    list-style: none;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    bottom: 0px;
}

.applayout .content-right-150 {
    height: 100%;
    margin-right: 150px;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #ffffff;
}

.applayout .content-right-120 {
    height: 100%;
    margin-right: 110px;
    overflow: hidden;
    position: relative;
    padding: 0;
    background: #ffffff;
}

.applayout .content-inner {
    list-style: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    bottom: 50px;
}

.applayout .content-inner-mini {
    list-style: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    bottom: 88px;
}

.applayout .content-inner-b40 {
    list-style: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    bottom: 68px;
}


.applayout .content-pure {
    list-style: none;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    bottom: 1px;
}

@media (max-width: 1200px) {
    .applayout .content-view {
        margin-left: 360px;
    }
}

@media (max-width: 768px) {
    .applayout .content-view {
        margin-left: 0;
    }
}

.applayout .content-header {
    border-bottom: 3px solid #9e9e9e;
    min-height: 50px;
}

.applayout .content-cont {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 50px;
    bottom: 0;
}

.applayout .content-cont-inner-20 {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 48px;
    bottom: 0;
    background-color: #F0F0F0;
    /* lightgrey */
}


.applayout .content-taxon {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 48px;
    bottom: 0;
    background-color: #f7f7f8;
    /* lightgrey */
}

.applayout .content-taxon-inner {
    background-color: #f7f7f8;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    bottom: 100px;
}

.applayout .content-filt-inner {
    background-color: #f7f7f8;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    bottom: 68px;
}

.applayout .content-taxon-inner-cont {
    border-top-left-radius: 15px 15px;
    background-color: #fff;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 60px;
    bottom: 0;
}

.applayout .content-taxon-inner-cont-inner {
    background-color: #A0B61E;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 95px;
    bottom: 0;
    right: 0;
}

.applayout .content-cont-inner {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 0;
    bottom: 0;
}


.applayout .content-cont-inner-mini {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 62px;
    bottom: 100px;
}

.applayout .content-cont-inner-10 {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 15px;
    bottom: 0;
    background-color: #F0F0F0;
    /* lightgrey */
}

.applayout .content-cont-result {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    top: 65px;
    bottom: 0;
    background-color: #F0F0F0;
    /* lightgrey */
}



.panel-test .test {
    background-size: cover !important;
}


/* ---------- */

ul.overview-menu li a {
    border-radius: 5px 5px 0 0;

}

ul.overview-menu li a:hover {
    color: #720e9e !important;
}

ul.overview-menu>li.tab-current>a,
ul.overview-menu>li.tab-current>a:hover,
ul.overview-menu>li.tab-current>a:focus {
    color: #fff !important;
    cursor: default !important;
    /* background-color: #fff !important;
    border: 1px solid #ddd !important;
    border-bottom-color: transparent; */
}

/*
ul.overview-menu li a:active {
    color: #fff !important;
} */

/* ul.overview-menu li a:focus {
    color: #fff !important;
} */

ul.overview-menu li.tab-current a {
    border-radius: 5px 5px 0 0;
    background-color: #720e9e !important;

}

.tabs-style-fillup-02 nav ul {
    padding: 0;
    max-width: none;
    box-shadow: inset 5px 5px #d1d3d2;
}

.tabs-style-fillup-02 nav ul li a {
    padding: 0.5em 0;
    border-right: 1px solid #c2c2c2;
    line-height: 1;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAICAIAAAC3eAIWAAAAA3NCSVQICAjb4U/gAAAAI0lEQVQImWPwj0hh+v//PxPD//9M////Z/rP8J/p//9/MD4AGUETB+SFfCsAAAAASUVORK5CYII=);
    background-color: #afafaf;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e4e4e4), color-stop(1, #c7c7c7));
    background-image: -webkit-linear-gradient(top, #e4e4e4, #c7c7c7);
    background-image: -moz-linear-gradient(top, #e4e4e4, #c7c7c7);
    background-image: -o-linear-gradient(top, #e4e4e4, #c7c7c7);
    background-image: linear-gradient(#e4e4e4, #c7c7c7);
}

.tabs-style-fillup-02 nav ul li:last-child a {
    border: none;
}

.tabs-style-fillup-02 nav ul li.tab-current {
    z-index: 100;
}

.tabs-style-fillup-02 nav ul li.tab-current a {
    color: #fff;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAICAIAAAC3eAIWAAAAA3NCSVQICAjb4U/gAAAAI0lEQVQImWPwj0hh+v//PxPD//9M////Z/rP8J/p//9/MD4AGUETB+SFfCsAAAAASUVORK5CYII=);
    background-color: #6e7d8f;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6e7d8f), color-stop(1, #404854));
    background-image: -webkit-linear-gradient(top, #6e7d8f, #404854);
    background-image: -moz-linear-gradient(top, #6e7d8f, #404854);
    background-image: -o-linear-gradient(top, #6e7d8f, #404854);
    background-image: linear-gradient(#6e7d8f, #404854);
}

.tabs-style-fillup-02 nav ul li a::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    height: calc(100% + 1px);
    border: 1px solid #2CC185;
    background: #2CC185;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.tabs-style-fillup-02 nav ul li.tab-current a::after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.tabs-style-fillup-02 nav ul li a span,
.tabs-style-fillup-02 .icon::before {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
}

.tabs-style-fillup-02 nav ul li a span {
    display: block;
    font-weight: 700;
    font-size: 0.8em;
    line-height: 1.5;
}

.tabs-style-fillup-02 .icon::before {
    display: block;
    margin: 0;
}

.tabs-style-fillup-02 nav ul li.tab-current a span,
.tabs-style-fillup-02 li.tab-current .icon::before {
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
}

.btn-ionic {
    padding: 5px 35px;
    cursor: pointer;
    border-width: 1px;
    border-radius: 0 40px 0 40px;
    font-size: 14px;
    font-weight: 500;
    -webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
}

.btn-ionic.btn-tertiary {
    color: #fff;
    background: #fc6946;
    border-color: #fc6946;
}

.btn-ionic.btn-tertiary.btn-tag {
    position: relative;
    border-radius: 2px;
}

.btn-ionic.btn-tertiary.btn-tag:before {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    content: '';
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    margin-top: -4px;
}

.btn-ionic.btn-tertiary.btn-tag:after {
    position: absolute;
    top: 0;
    right: -11px;
    bottom: 0;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 10px;
    border-color: transparent transparent transparent #fc6946;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .btn-ionic.btn-tertiary.btn-tag:after {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.btn-ionic.btn-tertiary:hover,
.btn-ionic.btn-tertiary:focus {
    border-color: #fb4014 !important;
    background: #fb4014 !important;
}

.btn-ionic.btn-tertiary:hover.btn-tag:after,
.btn-ionic.btn-tertiary:focus.btn-tag:after {
    border-color: transparent transparent transparent #fb4014;
}

.btn-ionic.btn-tertiary.btn-link {
    color: #fc6946;
    background: transparent;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-block+.btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.btn-primary {
    color: #fff;
    background-color: #58748B !important;
    border-color: #58748B !important;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-primary:focus,
.btn-primary.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-ionic.btn-primary {
    background: #4ba1fa;
    border-color: #4ba1fa;
    color: #fff;
}

.btn-ionic.btn-primary:hover,
.btn-ionic.btn-primary:focus {
    border-color: #1987f9 !important;
    background: #1987f9 !important;
}

.btn-ionic.btn-primary.btn-link {
    background: transparent;
    color: #fff;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-ionic.btn-outline-primary {
    color: #4ba1fa;
}

.btn-ionic.btn-secondary {
    color: #fff;
    border-color: #f9243f;
    background: #f9243f;
}

.btn-ionic.btn-secondary:hover,
.btn-ionic.btn-secondary:focus {
    border-color: #e40622 !important;
    background: #e40622 !important;
}

.btn-ionic.btn-secondary.btn-link {
    color: #f9243f;
    background: transparent;
}

.btn-ionic.btn-outline-secondary {
    color: #f9243f;
    border-color: #f9243f;
}

.btn-ionic.btn-outline-secondary:hover {
    background: #fa3d55;
}


.checkbox label.checkbox-inline-edit {
    display: inline-block;
}


.checkbox-inline-edit,
.checkbox-inline-edit+.checkbox-inline-edit {
    margin-right: 5px !important;
    margin-top: 0px !important;
    margin-left: 0 !important;
    margin-bottom: 0px !important;
}

.specimen-image-card img{
    height:180px;
    object-fit:cover;
}

.specimen-image-title{
    font-weight:600;
    margin-bottom:4px;
}

.specimen-image-meta{
    font-size:11px;
    color:#888;
    margin-bottom:10px;
}