@import "all.min.css";
@import url('https://fonts.googleapis.com/css?family=Poppins:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


html, body {
    height: 100%
}

html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

* {
    padding: 0;
    margin: 0;
    outline: 0
}

body {
    /*font-family: "Poppins", sans-serif;*/
    font-family: "Open Sans", serif;
    height: 100vh;
    color: #525970 !important;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word;
    background-color: #f2f2f2
}

@media(min-width:1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1000px
    }
}

h1, h2, h3, h4, h5, h6 {
    color: #222
}

p {
    margin-bottom: 20px
}

strong {
    font-weight: 500
}

label {
    font-weight: 500;
    margin-bottom: 3px;
    color: #222;
    font-size: 14px
}

hr {
    margin: 30px 0;
    border-color: #ddd
}

ul, ol {
    list-style: none;
    margin: 0 0 25px;
    padding: 0
}

a {
    color: #434bdf;
    text-decoration: none;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    outline: 0
}

a:hover, a:focus {
    color: #111;
    text-decoration: none;
    outline: 0
}

a.animated_link {
    position: relative;
    text-decoration: none;
    position: relative;
    text-decoration: none
}

a.animated_link:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    opacity: 1;
    left: 0;
    background-color: #434bdf;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease
}

a.animated_link:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

a.animated_link.active {
    position: relative;
    text-decoration: none;
    color: #434bdf
}

a.animated_link.active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    opacity: 1;
    left: 0;
    background-color: #434bdf;
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

a.btn_1, .btn_1 {
    border: 0;
    color: #fff;
    background: #434bdf;
    outline: 0;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    padding: 12px 25px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-size: .875rem
}

a.btn_1:hover, .btn_1:hover {
    -webkit-filter: brightness(125%);
    filter: brightness(125%)
}

a.btn_1.full-width, .btn_1.full-width {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px
}

a.btn_1.small, .btn_1.small {
    padding: 7px 10px;
    font-size: 13px;
    font-size: .8125rem
}

a.btn_1.medium, .btn_1.medium {
    font-size: 16px;
    font-size: 1rem;
    padding: 18px 30px
}

a.btn_1.rounded, .btn_1.rounded {
    -webkit-border-radius: 25px !important;
    -moz-border-radius: 25px !important;
    -ms-border-radius: 25px !important;
    border-radius: 25px !important;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2)
}

a.btn_1.black, .btn_1.black {
    background: #222
}

a.btn_1.plus_icon, .btn_1.plus_icon {
    padding-right: 10px;
    padding-bottom: 5px
}

a.btn_1.plus_icon i, .btn_1.plus_icon i {
    font-size: 26px;
    font-size: 1.625rem;
    float: right;
    position: relative;
    top: -3px;
    line-height: 1
}

a.btn_1.plus_icon.medium, .btn_1.plus_icon.medium {
    padding-bottom: 10px;
    padding-right: 20px
}

.pulse_bt {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    animation: pulseanime 3s infinite;
    -webkit-animation: pulseanime 3s infinite
}

@-webkit-keyframes pulseanime {
    0 {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2)
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px transparent
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent
    }
}

@keyframes pulseanime {
    0 {
        -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2)
    }

    70% {
        -moz-box-shadow: 0 0 0 10px transparent;
        box-shadow: 0 0 0 10px transparent
    }

    100% {
        -moz-box-shadow: 0 0 0 0 transparent;
        box-shadow: 0 0 0 0 transparent
    }
}

a.social_bt {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    min-width: 200px;
    margin-bottom: 15px;
    display: block;
    padding: 12px;
    line-height: 1;
    position: relative;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer
}

a.social_bt:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%)
}

a.social_bt.facebook {
    background: #3b5998 url(../img/Facebook__logo.svg) 10px center no-repeat
}

a.social_bt.google {
    background: #444 url(../img/Google__G__Logo.svg) 10px center no-repeat
}

.divider {
    text-align: center;
    height: 1px;
    margin: 20px 0;
    background-color: #ededed
}

.divider span {
    position: relative;
    top: -20px;
    background-color: #fff;
    display: inline-block;
    padding: 10px;
    font-style: italic
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #fff;
    z-index: 999999
}

[data-loader="circle-side"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/preloader.gif) center no-repeat #fff
}

#loader_form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 999999;
    display: none
}

[data-loader="circle-side-2"] {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    -webkit-animation: circle infinite .95s linear;
    -moz-animation: circle infinite .95s linear;
    -o-animation: circle infinite .95s linear;
    animation: circle infinite .95s linear;
    border: 2px solid #333;
    border-top-color: rgba(0, 0, 0, 0.2);
    border-right-color: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(0, 0, 0, 0.2);
    border-radius: 100%
}

@-webkit-keyframes circle {
    0 {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-moz-keyframes circle {
    0 {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-o-keyframes circle {
    0 {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes circle {
    0 {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.row-height {
    min-height: 100vh !important;
    height: 100vh
}

@media(max-width:991px) {
    .row-height {
        height: auto
    }
}

.content-left-bg-color {
    background-color: #434bdf
}

.content-left-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 100%;
    padding: 0 90px;
    color: #fff;
    text-align: center;
    position: relative
}

.content-left-wrapper.with_gradient {
    background: transparent;
    background: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.5));
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5))
}

@media(max-width:991px) {
    .content-left-wrapper {
        height: auto;
        padding: 95px 30px 60px
    }
}

@media(max-width:767px) {
    .content-left-wrapper {
        padding: 95px 15px 60px
    }

    .user-confirm-sec {
        padding: 2rem 2rem 2rem 1.5rem !important
    }

    .user-confirm-sec h4, .user-confirm-sec h5 {
        font-size: 19px !important
    }

    .user-confirm-sec h6 {
        font-size: 16px !important
    }
}

.content-left-wrapper small {
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
    font-size: 14px;
    font-size: .875rem;
    opacity: .8;
    font-weight: 500
}

.content-left-wrapper h1 {
    color: #fff;
    margin-top: 0;
    font-size: 36px;
    font-size: 2.25rem
}

@media(max-width:767px) {
    .content-left-wrapper h1 {
        font-size: 26px;
        font-size: 1.625rem
    }
}

.content-left-wrapper p {
    font-size: 16px;
    font-size: 1rem;
    opacity: .8
}

@media(max-width:767px) {
    .content-left-wrapper p {
        font-size: 14px;
        font-size: .875rem
    }
}

.content-right {
    overflow-y: auto
}

.copy {
    text-align: center
}

.copy.white {
    color: #fff
}

.copy.white a.animated_link {
    color: #fff
}

.copy.white a.animated_link:before {
    background-color: #fff
}

.copy.white a.animated_link.active {
    color: #fff
}

.copy.white a.animated_link.active:before {
    background-color: #fff
}

a#logo {
    position: absolute;
    left: 20px;
    top: 15px;
    display: block;
    height: 35px
}

@media(max-width:991px) {
    a#logo {
        left: 15px;
        top: 10px
    }
}

#social {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 999
}

#social ul {
    margin: 0;
    padding: 0;
    text-align: center
}

#social ul li {
    float: left;
    margin: 0 0 0 20px;
    list-style: none
}

#social ul li a {
    color: #fff;
    text-align: center;
    line-height: 35px;
    display: block;
    font-size: 16px;
    font-size: 1rem;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-decoration: none
}

#social ul li a:hover {
    transform: translateY(-4px)
}

#forgot_pw {
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    min-height: 100%;
    display: none;
    padding: 25px
}

@media(max-width:767px) {
    #forgot_pw {
        padding: 0 15px
    }
}

#forgot_pw label {
    font-weight: 500
}

.panel {
    -webkit-box-shadow: 3px 0 30px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 0 30px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 0 30px rgba(0, 0, 0, 0.2);
    width: 430px;
    padding: 30px 45px;
    position: absolute;
    left: 0;
    top: 0;
    overflow-y: auto;
    background-color: #fff;
    min-height: 100vh;
    z-index: 99
}

.panel figure {
    margin: 0 0 15px;
    text-align: center;
    border-bottom: 1px solid #ededed;
    padding: 0 60px 30px
}

@media(max-width:767px) {
    .panel figure {
        margin: -30px -30px 20px;
        padding: 20px 30px
    }
}

.panel .copy {
    padding-top: 30px;
    left: 0;
    bottom: 15px;
    position: absolute;
    text-align: center;
    width: 100%
}

@media(max-width:767px) {
    .panel {
        width: 100%
    }
}

.panel #forgot_pw {
    top: 101px;
    display: none;
    padding: 25px 45px
}

.panel .input_style_2 .divider {
    margin-bottom: 30px
}

.panel.right {
    left: auto;
    right: 0
}

.panel.center {
    position: relative;
    width: 100%;
    min-height: inherit
}

.panel.header_2 figure {
    background-color: #f8f8f8;
    margin: -30px -45px 45px;
    padding: 25px 15px
}

.video {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    z-index: 9;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media(max-width:767px) {
    .video {
        display: none
    }
}

.review_block_numbers ul {
    padding: 0;
    margin: 0 -3px;
    list-style-type: none;
    display: flex;
    justify-content: center
}

.review_block_numbers ul li {
    display: list-item;
    margin: 0 3px;
    width: 100%
}

.container_numbers {
    margin-bottom: 5px;
    position: relative
}

.container_numbers input[type="radio"] {
    display: none
}

.container_numbers label {
    cursor: pointer
}

.container_numbers .radio {
    position: relative;
    border: 1px solid #dae0e5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding: 15px;
    display: block;
    text-align: center;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 450ms
}

@media(max-width:575px) {
    .container_numbers .radio {
        padding: 10px
    }
}

.container_numbers .radio:hover {
    border-color: transparent
}

.container_numbers .radio.very_bad:hover {
    background-color: #f03
}

.container_numbers .radio.bad:hover {
    background-color: #ff5f7f
}

.container_numbers .radio.average:hover {
    background-color: #94b49b
}

.container_numbers .radio.good:hover {
    background-color: #68cd7f
}

.container_numbers .radio.very_good:hover {
    background-color: #68cd7f
}

.container_numbers input[type="radio"]:checked~.radio, .container_numbers input[type="radio"]:checked:hover {
    transition: all 450ms;
    color: #fff;
    border: 1px solid transparent
}

.container_numbers input[type="radio"]:checked~.radio.very_bad, .container_numbers input[type="radio"]:checked:hover.very_bad {
    background-color: #f03
}

.container_numbers input[type="radio"]:checked~.radio.bad, .container_numbers input[type="radio"]:checked:hover.bad {
    background-color: #ff5f7f
}

.container_numbers input[type="radio"]:checked~.radio.average, .container_numbers input[type="radio"]:checked:hover.average {
    background-color: #94b49b
}

.container_numbers input[type="radio"]:checked~.radio.good, .container_numbers input[type="radio"]:checked:hover.good {
    background-color: #68cd7f
}

.container_numbers input[type="radio"]:checked~.radio.very_good, .container_numbers input[type="radio"]:checked:hover.very_good {
    background-color: #68cd7f
}

.form-group {
    margin-bottom: 1rem
}

/* .form-control {
    border: 1px solid #dae0e5 !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: .875rem;
    height: calc(2.55rem+2px);
    transition: all .5s ease
} */

.form-control:focus {
    box-shadow: none;
    border-color: #434bdf
}

.form-control::-webkit-input-placeholder, .form-control::-moz-placeholder, .form-control:-ms-input-placeholder, .form-control::-ms-input-placeholder {
    color: #999;
    opacity: 1
}

.input_style_2 .form-control {
    border: none !important;
    border-bottom: 1px solid #dae0e5 !important;
    padding-left: 0;
    padding-right: 0;
    height: calc(2.1rem);
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    border-radius: 0 !important
}

.input_style_2 .form-control:focus {
    box-shadow: none;
    border-color: #434bdf !important
}

.input_style_2 .form-group {
    margin-bottom: 30px
}

.input_style_2 .my-toggle {
    margin-right: 0;
    padding: 0
}

.input_style_2 .my-toggle:hover, .input_style_2 .my-toggle:focus {
    background-color: transparent;
    color: #434bdf
}

.container_check {
    display: block;
    position: relative;
    font-size: 14px;
    font-size: .875rem;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #555
}

.container_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.container_check input:checked~.checkmark {
    background-color: #434bdf;
    border: 1px solid transparent
}

.container_check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #dae0e5;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.container_check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.container_check:hover .checkmark {
    border: 1px solid #434bdf
}

.container_check.version_2 {
    padding: 6px 0 0 45px;
    min-height: 30px
}

.container_check.version_2 .checkmark {
    height: 30px;
    width: 30px
}

.container_check.version_2 .checkmark:after {
    left: 12px;
    top: 8px;
    width: 5px;
    height: 10px
}

.container_check input:checked~.checkmark:after {
    display: block
}

.container_radio {
    display: block;
    position: relative;
    font-size: 14px;
    font-size: .875rem;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.container_radio input {
    position: absolute;
    opacity: 0
}

.container_radio input:checked~.checkmark:after {
    opacity: 1
}

.container_radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%
}

.container_radio .checkmark:after {
    display: block;
    content: "";
    position: absolute;
    opacity: 0;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #434bdf;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.fileupload {
    position: relative;
    width: 100%;
    margin-top: 5px
}

input[type=file] {
    background-color: #fff;
    border: 1px solid #dae0e5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding: 5px;
    height: auto;
    width: 100%;
    color: #999
}

input[type=file]:focus {
    box-shadow: none;
    outline: 0
}

input[type=file]::-webkit-file-upload-button, input[type=file].invalid::-webkit-file-upload-button, input[type=file].valid::-webkit-file-upload-button {
    color: #fff;
    font-size: 13px;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding: 8px 10px 8px 38px;
    background: #434bdf url(../img/upload_icon.svg) 8px center no-repeat;
    outline: 0
}

input[type=file]::-webkit-file-upload-button:focus, input[type=file].invalid::-webkit-file-upload-button:focus, input[type=file].valid::-webkit-file-upload-button:focus {
    box-shadow: none;
    outline: 0
}

.my-toggle {
    background: transparent;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    color: #888;
    cursor: pointer;
    font-size: 10px;
    font-size: 10px;
    font-size: .625rem;
    font-weight: 700;
    margin-right: 5px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    text-transform: uppercase;
    -moz-appearance: none;
    -webkit-appearance: none
}

.my-toggle:hover, .my-toggle:focus {
    background-color: #eee;
    color: #555;
    outline: transparent
}

.hideShowPassword-wrapper {
    width: 100% !important
}

#pass-info {
    width: 100%;
    color: #555;
    text-align: center;
    font-size: 12px;
    font-size: .75rem;
    padding: 5px 3px 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px
}

#pass-info.weakpass, #pass-info.stillweakpass, #pass-info.goodpass, #pass-info.strongpass, #pass-info.vrystrongpass {
    margin-bottom: 12px
}

#pass-info.weakpass {
    border: 1px solid #ff9191;
    background: #ffc7c7;
    color: #94546e
}

#pass-info.stillweakpass {
    border: 1px solid #FBB;
    background: #FDD;
    color: #945870
}

#pass-info.goodpass {
    border: 1px solid #c4eec8;
    background: #e4ffe4;
    color: #51926e
}

#pass-info.strongpass {
    border: 1px solid #6ed66e;
    background: #79f079;
    color: #348f34
}

#pass-info.vrystrongpass {
    border: 1px solid #379137;
    background: #48b448;
    color: #cdffcd
}

.background-image {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #ededed
}

.opacity-mask {
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
    top: 0;
    z-index: 2
}

.modal-content {
    border: 1px solid transparent
}

.modal-content .close {
    font-weight: 300;
    font-size: 32px;
    font-size: 2rem;
    outline: 0
}

.tooltip .tooltip-inner {
    font-size: 13px;
    font-size: .8125rem;
    line-height: 1.3;
    padding: 10px
}

.tooltip.show {
    opacity: .9
}

.info {
    display: block
}

.info h6 {
    font-size: 14px;
    font-size: .875rem
}

.info a {
    font-size: 16px;
    font-size: 1rem;
    display: inline-block;
    float: right;
    color: #999;
    padding-top: 3px
}

.info a:hover {
    color: #434bdf
}

input#website {
    display: none
}

span.error {
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 12px;
    position: absolute;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    top: -20px;
    right: -15px;
    z-index: 2;
    height: 25px;
    line-height: 1;
    background-color: #e34f4f;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    padding: 6px 8px
}

span.error:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 6px 6px 0;
    border-color: transparent #e34f4f;
    display: block;
    width: 0;
    z-index: 1;
    bottom: -6px;
    left: 20%
}

.terms span.error {
    top: -30px;
    left: -15px;
    right: inherit
}

#success {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 190px;
    margin-top: -85px;
    margin-left: -150px;
    text-align: center
}

#success h4 {
    font-weight: 400;
    margin: 20px 0 0;
    font-size: 18px;
    font-size: 1.125rem
}

#success h4 span {
    display: block;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 21px;
    font-size: 1.3125rem
}

@-webkit-keyframes checkmark {
    0 {
        stroke-dashoffset: 50px
    }

    100% {
        stroke-dashoffset: 0
    }
}

@-ms-keyframes checkmark {
    0 {
        stroke-dashoffset: 50px
    }

    100% {
        stroke-dashoffset: 0
    }
}

@keyframes checkmark {
    0 {
        stroke-dashoffset: 50px
    }

    100% {
        stroke-dashoffset: 0
    }
}

@-webkit-keyframes checkmark-circle {
    0 {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@-ms-keyframes checkmark-circle {
    0 {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@keyframes checkmark-circle {
    0 {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

.inlinesvg .svg svg {
    display: inline
}

.icon--order-success svg path {
    -webkit-animation: checkmark .25s ease-in-out .7s backwards;
    animation: checkmark .25s ease-in-out .7s backwards
}

.icon--order-success svg circle {
    -webkit-animation: checkmark-circle .6s ease-in-out backwards;
    animation: checkmark-circle .6s ease-in-out backwards
}

.add_bottom_10 {
    margin-bottom: 10px !important
}

.add_bottom_15 {
    margin-bottom: 15px !important
}

.add_bottom_30 {
    margin-bottom: 30px !important
}

.add_bottom_45 {
    margin-bottom: 45px !important
}

.add_bottom_60 {
    margin-bottom: 60px
}

.add_bottom_75 {
    margin-bottom: 75px
}

.add_top_10 {
    margin-top: 10px
}

.add_top_15 {
    margin-top: 15px
}

.add_top_20 {
    margin-top: 20px
}

.add_top_30 {
    margin-top: 30px
}

.add_top_60 {
    margin-top: 60px
}

.margin_30 {
    padding-top: 30px;
    padding-bottom: 30px
}

.margin_60 {
    padding-top: 60px;
    padding-bottom: 60px
}

.margin_60_35 {
    padding-top: 60px;
    padding-bottom: 35px
}

.team .member {
    position: relative;
    border-radius: 4px;
    padding: 0
}

.team .member .pic {
    overflow: hidden;
    border-radius: 4px;
    width: 130px;
    height: 130px
}

.team .member .pic img {
    transition: ease-in-out .3s
}

.team .member .member-info {
    padding-left: 0
}

.team .member p.member-heading {
    max-width: 20ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block
}

h5.member-heading {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 19px;
    color: #556270;
    line-height: 1.2;
    /*max-width:19ch;*/
    text-overflow: ellipsis;
    overflow: hidden;
    /*white-space:nowrap*/
}

.team .member span {
    display: block;
    font-size: 13px;
    padding-bottom: 5px;
    position: relative;
    font-weight: 600;
    line-height: 1.3;
    max-width: 20ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block
}

.team .member p {
    font-size: 12px;
    line-height: 1.3;
    color: #525970;
    font-weight: 500
}

.team .member .member-para {
    margin: 10px 0 0;
    font-size: 13px;
    word-wrap: break-word;
}

.team .member .social {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start
}

.team .member .social a {
    transition: ease-in-out .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: var(--calendar-layout-color) !important
}

.team .member .social a+a {
    margin-left: 8px
}

.team .member .social a:hover {
    background: #41a1fd
}

.team .member .social a .team-icon {
    color: #fff;
    font-size: 9px;
    margin: 0 2px
}

p.member-heading span {
    color: #007bff;
    font-size: 11px !important
}

.team .member p.member-heading span:after {
    background: transparent
}

.box {
    border-radius: 4px;
    filter: drop-shadow(0 3px 3.5px rgba(0, 0, 0, 0.16));
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 10px;
    position: relative;
    margin-bottom: 1.5rem;
    border-top: 4px solid var(--calendar-layout-color) !important;
    height: 100px
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.content img {
    width: 24px;
    height: 24px;
    border-radius: 100px;
    overflow: hidden;
    object-fit: cover;
    object-position: top
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start
}

.content strong {
    font-weight: 600;
    color: #525970;
    margin-top: 0;
    font-size: 15px
}

.content p {
    font-size: 13px;
    color: var(--calendar-layout-color);
    margin: 10px 0 0;
    font-weight: 500;
    line-height: 20px
}

.content p span a {
    color: var(--calendar-layout-color) !important;
    font-size: 13px;
    font-weight: 600
}

.content span {
    font-size: 11px;
    line-height: 23px;
    color: #525970;
    font-weight: 500
}

.calendar-start-page {
    width: 100%;
    height: 100vh;
    display: inline-block;
    display: flex;
    align-items: center
}

.calendar-wrapper {
    height: auto;
    margin: 0 auto
}

.calendar-header {
    background-color: transparent;
    height: 100%;
    padding: 20px;
    color: #fff;
    font-weight: 300;
    position: relative
}

.header-text h3 {
    font-size: 18px
}

.calendar-content {
    background-color: transparent;
    padding: 5px 15px;
    overflow: hidden
}

.event-mark {
    width: 5px;
    height: 5px;
    background-color: teal;
    border-radius: 100px;
    position: absolute;
    left: 46%;
    top: 70%
}

.calendar-footer {
    height: 200px;
    font-weight: 300;
    text-align: center;
    background-color: #4b6289 !important;
    position: relative;
    overflow: hidden
}

.addForm {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 100%;
    background-color: #4b5889 !important;
    transition: top .5s cubic-bezier(1, 0, 0, 1);
    padding: 0 5px
}

.addForm input {
    color: #fff
}

.addForm .row {
    padding-left: .75rem;
    padding-right: .75rem;
    margin-bottom: 0
}

.addForm h4 {
    color: #fff;
    margin-bottom: 1rem
}

.addEventButtons {
    text-align: right;
    padding: 0 .75rem
}

.addEventButtons a {
    color: #000;
    font-weight: 300
}

.emptyForm {
    padding: 20px;
    padding-left: 15%;
    padding-right: 15%
}

.emptyForm h4 {
    color: #fff;
    margin-bottom: 2rem
}

.sidebar-wrapper {
    color: #303030;
    background-color: transparent;
    font-weight: 300;
    height: calc(100%+60px);
    height: -moz-calc(100%);
    padding: 0
}

.sidebar-title {
    padding: 50px 6% 50px 12%
}

.sidebar-title h4 {
    margin-top: 0
}

.sidebar-events {
    overflow-x: hidden;
    overflow-y: hidden;
    margin-bottom: 70px
}

.empty-message {
    font-size: 1.2rem;
    padding: 15px 6% 15px 12%
}

.eventCard {
    background-color: #fff;
    color: #000;
    padding: 12px 24px;
    border-bottom: 1px solid #e5e5e5;
    white-space: nowrap;
    position: relative;
    animation: slideInDown .5s
}

.eventCard-header {
    font-weight: 700
}

.eventCard-description {
    color: grey
}

.eventCard-mark-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 100%)
}

.eventCard-mark {
    width: 8px;
    height: 8px;
    background-color: #b39ddb;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    top: 45%
}

.day-mark {
    width: 7px;
    height: 7px;
    background-color: #b39ddb;
    border-radius: 100px;
    position: absolute;
    left: 47%;
    top: 67%
}

.content-wrapper {
    padding-top: 10px;
    margin-left: 0
}

#table-body .col:hover {
    cursor: pointer;
    background-color: #e0e0e0;
    border-radius: 50%
}

.empty-day:hover {
    cursor: default !important;
    background-color: #fff !important
}

#table-body .row .col {
    padding: .75rem
}

#table-body .col {
    border: 1px solid transparent;
    color: var(--calendar-layout-color) !important
}

#table-body .row {
    margin-bottom: 0
}

#calendar-table {
    text-align: center
}

.prev-button {
    position: absolute;
    cursor: pointer;
    left: 5%;
    top: 36%;
    color: grey !important
}

.prev-button i, .next-button i {
    font-size: 1em;
    color: #4798ce
}

.next-button {
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 36%;
    color: grey !important
}

.blue.lighten-3 {
    background-color: var(--calendar-layout-color) !important !important;
    border-radius: 50%;
    color: #fff !important
}

.addEvent {
    box-shadow: 0 5px 15px #39a8e4;
    background-color: #39a8e4;
    padding: 10px;
    padding-left: 3em;
    padding-right: 3em;
    cursor: pointer;
    border-radius: 25px;
    color: #fff !important;
    background-image: linear-gradient(135deg, #8d8dd4, #45ced4)
}

.addEvent:hover {
    transition: box-shadow .5s;
    box-shadow: 0 4px 25px #39a8e4
}

.mobile-header {
    padding: 0;
    display: none;
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    z-index: 99;
    width: 100%;
    background-color: #5a649c !important
}

.mobile-header a i {
    color: #fff;
    font-size: 38px
}

.mobile-header h4 {
    color: #fff
}

.mobile-header .row {
    margin-bottom: 0
}

.mobile-header h4 {
    margin: 0;
    font-weight: 300
}

@media(max-width:992px) {
    .content-wrapper {
        margin-left: 0
    }

    .mobile-header {
        display: block
    }

    .calendar-wrapper {
        margin-top: 80px
    }

    .sidebar-wrapper {
        background-color: transparent
    }

    .sidebar-title {
        background-color: transparent
    }

    .empty-message {
        color: #000
    }
}

@media(max-width:767px) {
    .content-wrapper .container {
        width: auto
    }

    .calendar-content {
        padding-left: 5%;
        padding-right: 5%
    }

    body .row {
        margin-bottom: 0
    }
}

@media(max-width:450px) {
    .content-wrapper {
        padding-left: 0;
        padding-right: 0
    }

    .content-wrapper .container {
        padding-left: 0;
        padding-right: 0
    }
}

.time-slot {
    list-style: none;
    padding: 0;
    float: left;
    width: 100%;
    margin: 0 0 5px
}

.time-slot-item {
    /* font-size: 12px;
    color: var(--calendar-layout-color) !important;
    border: 1px solid var(--calendar-layout-color) !important;
    border-radius: 5px 5px;
    padding: 3px;
    margin: 5px 8px 5px 0;
    text-align: center;
    cursor: pointer;
    float: left;
    width: 22.16%;
    font-weight: 500 */
    font-size: 0.8125rem;
    color: var(--calendar-layout-color) !important;
    border: 1px solid var(--calendar-layout-color) !important;
    border-radius: 0.3125rem 0.3125rem;
    padding: 0.5rem 1rem;
    margin: 5px 12px 10px 0;
    text-align: center;
    cursor: pointer;
    float: left;
    width: 30%;
    font-weight: 500;
}

.time-slot-item:hover, .time-slot-item.picked {
    background: var(--calendar-layout-color) !important;
    border-color: var(--calendar-layout-color) !important;
    color: #fff !important
}

.available-slot-sec h6 {
    color: var(--calendar-layout-color) !important;
    border: 1px solid var(--calendar-layout-color) !important;
    padding: 7px 10px;
    border-radius: 3px
}

.book-appt {
    color: #fff;
    border: 1px solid var(--calendar-layout-color) !important;
    background-color: var(--calendar-layout-color) !important;
    padding: 5px;
    border-radius: 3px
}

.book-appt:hover {
    color: #fff
}

footer#home {
    position: absolute;
    bottom: 10%;
    right: 14%;
    font-size: 11px;
    font-weight: 500;
    padding-top: 7px
}

.select-sec .select2-container--bootstrap4 .select2-selection {
    background-color: transparent;
    border: 0 solid #0c94ea;
    box-shadow: none;
    color: var(--calendar-layout-color) !important;
    font-size: 9px
}

.select-sec .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b {
    top: 60%;
    border-color: var(--calendar-layout-color) !important transparent transparent
}

.select-sec .select2-container--bootstrap4.select2-container--focus .select2-selection {
    -webkit-box-shadow: none;
    box-shadow: none
}

.select-sec .select2-container--bootstrap4 .select2-selection--single {
    height: calc(1.2em+0.75rem+2px)
}

.select2-results__option {
    font-size: 12px !important
}

.wrap {
    padding: 30px;
    text-align: center
}

.wrap a {
    color: #fff
}

.hover-fx {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    position: relative;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.1);
    transition: 300ms
}

.hover-fx:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    box-sizing: content-box;
    box-shadow: 0 0 0 3px var(--calendar-layout-color) !important;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 300ms
}

.hover-fx:hover {
    background-color: var(--calendar-layout-color) !important;
    color: #fff
}

.hover-fx:hover:after {
    opacity: 1;
    transform: scale(1.15)
}

.bg-blu p {
    font-size: 14px
}

.bg-blu {
    border-radius: 6px !important;
    background-color: var(--calendar-layout-color) !important;
    width: 96%
}

.link-list-sec a {
    font-size: 12px
}

.link-list-sec .btn a {
    color: #fff
}

.fs-10 {
    font-size: 10px
}

.rad-6 {
    border-radius: 10px
}

.cal-lft-sec p {
    font-size: 13px;
    line-height: 20px;
    font-weight: 600
}

.cal-lft-sec h6 {
    font-size: 15px
}

.slot-sec p {
    font-size: 13px;
    color: #212529;
    font-weight: 500;
    line-height: 1.2
}

.slot-sec h6 {
    font-size: 13px;
    color: #212529;
    font-weight: 500
}

.cal-sec p {
    font-size: 16px;
    font-weight: 600
}

.btn-call {
    width: auto;
    border-radius: 3px;
    background-color: var(--calendar-layout-color) !important;
    color: #fff;
    padding: 3px 5px 4px;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    margin-left: 0 !important
}

.btn-call:hover {
    color: #fff
}

/* .user-form-sec .form-control {
    height: 35px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid var(--calendar-layout-color) !important;
    transition: all .5s ease
} */

.user-form-sec .btn-confirm {
    max-width: 94px;
    width: 100%;
    border-radius: 5px;
    background-color: var(--calendar-layout-color) !important;
    color: #fff;
    font-weight: 600;
    padding: 4.5px 10px
}

.add-guest .btn-guest {
    background: transparent;
    color: #000;
    border: 0 solid #0984e3 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    margin: 5px 0 5px;
    border-radius: 50px !important;
    line-height: normal
}

.add-guest .btn-guest span {
    font-size: 13px !important
}

.add-guest .btn-guest:focus {
    box-shadow: none !important
}

.add-guest .notify-gust-txt {
    font-size: 12px;
    color: #a2a2a2 !important;
    margin: 0;
    padding-top: 5px;
    font-weight: 500
}

.add-guest .multiple-tags-sec {
    width: 100%;
    top: 0;
    max-height: 0;
    margin-bottom: 0;
    -webkit-transition: max-height .5s ease-in-out;
    -moz-transition: max-height .5s ease-in-out;
    -o-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out
}

.add-guest {
    width: 100%;
    position: relative
}

.add-guest.active .multiple-tags-sec {
    -webkit-transition: max-height .5s ease-in-out;
    -moz-transition: max-height .5s ease-in-out;
    -o-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
    display: block;
    max-height: 90px
}

.multiple-tags-sec {
    display: none
}

.bootstrap-tagsinput .form-control {
    border: 0 solid #fff !important;
    background-color: #f2f7fa
}

.multiple-tags-sec .bootstrap-tagsinput {
    background-color: #f2f7fa;
    border: 1px solid #2f6ddf !important
}

.user-form-sec .error-txt {
    position: absolute !important;
    background: rgba(227, 108, 88, 9);
    padding: 4px 10px;
    top: auto !important;
    color: #fff !important;
    z-index: 1;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500 !important;
    line-height: 13px !important;
    box-shadow: 0 6px 6px 0 #000
}

.user-form-sec .error-txt:after {
    bottom: 100%;
    left: 25px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 0, 0, 0);
    border-bottom-color: rgba(227, 108, 88, 9);
    border-width: 6px;
    margin-left: -12px
}

.disabled-sec {
    opacity: .4;
    pointer-events: none;
    cursor: default
}

@media only screen and (min-width:22.5em) and (max-width:60em) {
    .hover-fx {
        bottom: 0
    }

    .classic-theme .team .member .member-para {
        height: auto !important
    }

    h5.member-heading {
        max-width: 13ch;
        font-size: 18px
    }

    .bg-white .col-lg-10.offset-lg-1.px-5 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .classic-theme-sec .footer-sec .footer-logo {
        bottom: 10px !important
    }

    .user-profile-sec .footer-sec .footer-logo {
        bottom: 10px !important
    }

    .classic-theme .team .member .member-para {
        height: 83px
    }

    .simple-theme .team .member .member-para {
        height: 83px
    }

    .simple-theme-sec .footer-sec .footer-logo {
        bottom: 10px !important;
        right: 6%
    }

    .simple-theme .team .member .member-para {
        height: auto !important
    }

    .captcha-sec .form-label {
        float: left
    }

    .my-auto {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .compact-theme-sec .footer-sec .footer-logo, .elegant-theme-sec .footer-sec .footer-logo {
        bottom: 10px !important;
        right: 6%
    }

    .compact-theme-sec #team img, .elegant-theme-sec #team img {
        max-width: unset;
        width: auto
    }
}

@media only screen and (min-width:22.5em) and (max-width:47.9375em) {
    .simple-theme .slots-panel {
        margin-top: 5rem !important
    }

    .simple-theme-sec .col-lg-8.offset-lg-2.px-5 {
        padding: 0 1.5rem !important
    }

    .simple-theme h5.member-heading {
        max-width: 13ch !important
    }

    .simple-theme .member-para {
        padding: 0 1rem !important
    }

    .compact-theme .slots-panel.px-5 {
        padding: 0 !important;
        margin-top: 2rem !important
    }

    .compact-theme #team img {
        max-width: unset;
        width: auto
    }
}

@media only screen and (min-width:34.0625em) and (max-width:36em) {
    .right-panel.compact-theme {
        padding-bottom: 0 !important
    }

    .compact-theme #team img {
        max-width: unset;
        width: auto
    }
}

@media only screen and (min-width:60.0625em) and (max-width:75em) {
    .footer-sec .footer-logo {
        bottom: 49px
    }

    .classic-theme-sec .footer-sec .footer-logo {
        bottom: 10px !important
    }

    .simple-theme-sec .footer-sec .footer-logo {
        bottom: 10px !important
    }

    .hgt-540 {
        height: auto !important
    }

    .compact-theme #team img {
        max-width: unset;
        width: auto
    }
}

@media only screen and (min-width:48em) and (max-width:60em) {
    .time-slot-item {
        width: auto !important
    }

    .rd-day-body {
        width: 40px !important;
        height: 35px !important;
        padding: 0 8px;
        color: #707070
    }

    .simple-theme-sec .footer-sec .footer-logo {
        bottom: 30px !important
    }

    .compact-theme .slots-panel.px-5 {
        padding: 0 !important;
        margin-top: 0 !important
    }

    .hgt-540 {
        height: auto !important
    }
}

.select2-container--bootstrap4.select2-container--disabled .select2-selection, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-selection {
    background-color: #fff !important
}

.select-sec .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 13px;
    font-weight: 500
}

.scrollbar-1 {
    scrollbar-width: thin;
    scrollbar-color: var(--calendar-layout-color) #fff
}

.scrollbar-1::-webkit-scrollbar {
    width: 4px;
    height: 8px
}

.scrollbar-1::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid transparent
}

.scrollbar-1::-webkit-scrollbar-thumb {
    background-color: var(--calendar-layout-color)
}

.scrollbar-1::-webkit-scrollbar-thumb:hover {
    background-color: #e67200
}

.scrollbar-1::-webkit-scrollbar-corner, .scrollbar-1::-webkit-scrollbar-track {
    background-color: #b0b7c4
}

[class^=scrollbar-1] {
    height: 240px;
    overflow-y: scroll;
    overflow-x: hidden
}

.scrollbar-slot {
    scrollbar-width: thin;
    scrollbar-color: var(--calendar-layout-color) #fff
}

.scrollbar-slot::-webkit-scrollbar {
    width: 4px;
    height: 8px
}

.scrollbar-slot::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid #fff
}

.scrollbar-slot::-webkit-scrollbar-thumb {
    background-color: var(--calendar-layout-color)
}

.scrollbar-slot::-webkit-scrollbar-thumb:hover {
    background-color: #e67200
}

.scrollbar-slot::-webkit-scrollbar-corner, .scrollbar-1::-webkit-scrollbar-track {
    background-color: #b0b7c4
}

[class^=scrollbar-slot] {
    height: 314px;
    overflow-y: scroll;
    overflow-x: hidden
}

.calendar-sec {
    min-height: 540px !important
}

@media only screen and (min-width:26.5625em) and (max-width:62em) {
    #team img {
        max-width: inherit;
        width: 100%
    }

    .compact-theme #team img {
        max-width: unset;
        width: auto
    }

    .compact-theme-sec #team img, .elegant-theme-sec #team img {
        max-width: unset;
        width: auto
    }
}

.box .content a {
    width: 20ch;
    display: inherit;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.footer-sec .back-icon {
    bottom: 49px;
    left: 8%
}

/*.footer-sec .footer-logo {
    bottom: 49px;
    right: 2%;
    font-size: 11px;
    font-weight: 600
}*/
.footer-sec .footer-logo{
    /*bottom: -73px;
    right: 5%;
    font-size: 11px;
    font-weight: 600;
    position: absolute;
    bottom: -78px;*/
    /*bottom:-29px;*/
    /*right: 6%;*/
    /*position: absolute;*/
    font-size: 11px;
    font-weight: 600
}

.captcha-sec .form-label {
    font-size: 12px !important;
    font-weight: 500
}

.popup-link {
    display: flex;
    flex-wrap: wrap
}

.popup-link a {
    background: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer
}

.popup-link p {
    max-width: 100ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block
}

.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 1;
    left: 14%;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center
}

.popup-content {
    background-color: #fefefe;
    margin: auto;
    padding: 10px;
    border: 1px solid #888;
    width: 30%
}

.popup-content p {
    font-size: 13px !important;
    padding: 10px;
    line-height: 20px
}

.popup-content a.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 700;
    background: 0;
    padding: 0;
    margin: 0;
    text-decoration: none
}

.popup-content a.close:hover {
    color: #333
}

.popup-content span:hover, .popup-content span:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer
}

.popup-container:target {
    visibility: visible;
    opacity: 1;
    transform: scale(1)
}

.popup-container h3 {
    margin: 10px
}

.popup-style-2 {
    transform: scale(0.3)
}

.popup-style-2:target {
    transform: scale(1)
}

.cal-sec .select-sec {
    padding-left: .5rem
}

.top-txt {
    font-size: 13px;
    font-weight: 500
}

.mt-45 {
    margin-top: 45px
}

.box-classic {
    border-radius: 0 0 4px 4px;
    filter: drop-shadow(0 3px 3.5px rgba(0, 0, 0, 0.16));
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
    margin-bottom: 1.5rem;
    border-top: 9px solid var(--calendar-layout-color) !important;
    height: 114.11px
}

.classic {
    border-radius: 0 0 4px 4px;
    filter: drop-shadow(0 3px 3.5px rgba(0, 0, 0, 0.16));
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
    margin-bottom: 1.5rem;
    border-top: 9px solid var(--calendar-layout-color) !important;
    height: auto
}

.box-classic .content, .classic .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.classic-theme .btn-call {
    width: auto;
    line-height: 16px;
    border-radius: 3px;
    background-color: var(--calendar-layout-color) !important;
    color: #fff;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 400;
    margin-left: 1rem !important
}

.classic-theme .team .member span, .classic .team .member span {
    display: block;
    padding-bottom: 5px;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    text-align: left;
    color: #525970
}

.classic-theme .team .member .member-para, .classic .team .member .member-para {
    margin: 10px 0 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    color: #525970;
    height: 49px
}

.scrollbar-classic {
    scrollbar-width: thin;
    scrollbar-color: var(--calendar-layout-color) #fff
}

.scrollbar-classic::-webkit-scrollbar {
    width: 4px;
    height: 8px
}

.scrollbar-classic::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid transparent
}

.scrollbar-classic::-webkit-scrollbar-thumb {
    background-color: var(--calendar-layout-color)
}

.scrollbar-classic::-webkit-scrollbar-thumb:hover {
    background-color: #e67200
}

.scrollbar-classic::-webkit-scrollbar-corner, .scrollbar-classic::-webkit-scrollbar-track {
    background-color: #fff
}

[class^=scrollbar-classic] {
    height: 230px;
    overflow-y: scroll;
    overflow-x: hidden
}

.classic-theme .content h4 {
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    color: #525970;
    max-width: 22ch;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.classic-theme .content p {
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    color: #525970;
    margin: 0
}

.classic-theme .content p.class-min {
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    text-align: left;
    color: var(--calendar-layout-color) !important
}

.para-hgt {
    min-height: 83px
}

.select2-container--open .select2-dropdown--above {
    border-bottom: 1px solid #ced4da !important
}

.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--below {
    border-top: 1px solid #ced4da !important
}

@media only screen and (max-width:767px) {
    .footer-sec .back-icon {
        left: 13%
    }
}

.se-pre-con-slot {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: url(/assets/care_panel/img/categories/preloader.gif) center no-repeat;
    text-align: center;
    display: none
}

.user-confirm-sec a {
    width: fit-content;
    display: inline-block
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%
}

.iti__country-list {
    overflow-x: hidden
}

.h-200 {
    height: 540px
}

.modal-content {
    background-color: #fff !important;
    border-radius: 6px !important;
    color: #303030;
    border: 1px solid #ccc
}

.modal-dialog {
    max-width: 500px;
    margin: 7.75rem auto
}

.box-simple {
    border-radius: 0 0 4px 4px;
    filter: drop-shadow(0 3px 3.5px rgba(0, 0, 0, 0.16));
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 7px;
    position: relative;
    margin-bottom: 1.5rem;
    border-top: 9px solid var(--calendar-layout-color) !important;
    height: 105px
}

.box-simple .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 1px 0 1px 30px
}

.simple-theme .btn-call {
    width: auto;
    border-radius: 3px;
    background-color: var(--calendar-layout-color) !important;
    color: #fff;
    padding: 3px 5px 4px;
    font-size: 12px;
    font-weight: 400;
    display: inline-block;
    margin-left: 1rem !important
}

.simple-theme .team .member span {
    display: block;
    padding-bottom: 5px;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    text-align: left;
    color: #525970
}

.simple-theme .member-para {
    margin: 10px 0 0;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    text-align: left;
    color: #525970;
    height: 49px
}

.simple-theme h5.member-heading {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 19px;
    color: #556270;
    line-height: 1.2;
    max-width: 16ch;
    text-overflow: ellipsis;
    overflow: hidden;
    /*white-space:nowrap*/
}

.scrollbar-simple {
    scrollbar-width: thin;
    scrollbar-color: var(--calendar-layout-color) #fff
}

.scrollbar-simple::-webkit-scrollbar {
    width: 2px;
    height: 8px
}

.scrollbar-simple::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid transparent
}

.scrollbar-simple::-webkit-scrollbar-thumb {
    background-color: var(--calendar-layout-color)
}

.scrollbar-simple::-webkit-scrollbar-thumb:hover {
    background-color: #e67200
}

.scrollbar-simple::-webkit-scrollbar-corner, .scrollbar-simple::-webkit-scrollbar-track {
    background-color: #fff
}

[class^=scrollbar-simple] {
    height: 220px;
    overflow-y: scroll;
    overflow-x: hidden
}

.simple-theme .content h4 {
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    color: #525970;
    max-width: 15ch;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.simple-theme .content p {
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    color: #525970;
    margin: 0
}

.simple-theme .content p.class-min {
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    text-align: left;
    color: var(--calendar-layout-color) !important
}

.simple-theme-sec hr {
    border-color: #707070
}

.box-compact {
    border-radius: 0 0 4px 4px;
    filter: drop-shadow(0 3px 3.5px rgba(0, 0, 0, 0.16));
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: .5rem 1rem;
    position: relative;
    margin-bottom: 1.5rem;
    border-top: 9px solid var(--calendar-layout-color) !important
}

.box-compact .content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start
}

.compact-theme .btn-call {
    width: auto;
    line-height: 16px;
    border-radius: 3px;
    background-color: var(--calendar-layout-color) !important;
    color: #fff;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 400
}

.compact-theme .team .member span {
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    text-align: left;
    color: #525970
}

.compact-theme .member-para {
    margin: 10px 0 0;
    font-weight: 500;
    font-size: 12px !important;
    line-height: 18px;
    text-align: left;
    color: #525970;
    height: 49px
}

.compact-theme h5.member-heading {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 19px;
    color: #556270;
    line-height: 1.2;
    max-width: 20ch;
    text-overflow: ellipsis;
    overflow: hidden;
    /*white-space:nowrap*/
}

.scrollbar-compact {
    scrollbar-width: thin;
    scrollbar-color: var(--calendar-layout-color) #fff
}

.scrollbar-compact::-webkit-scrollbar {
    width: 2px;
    height: 8px
}

.scrollbar-compact::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid transparent
}

.scrollbar-compact::-webkit-scrollbar-thumb {
    background-color: var(--calendar-layout-color)
}

.scrollbar-compact::-webkit-scrollbar-thumb:hover {
    background-color: #e67200
}

.scrollbar-compact::-webkit-scrollbar-corner, .scrollbar-compact::-webkit-scrollbar-track {
    background-color: #fff
}

[class^=scrollbar-compact] {
    height: 430px;
    overflow-y: scroll;
    overflow-x: hidden
}

.compact-theme .content h4 {
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    color: #525970;
    max-width: 22ch;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.compact-theme .content p {
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    color: #525970;
    margin: 0
}

.compact-theme .content p.class-min, .compact-theme .content span.class-min {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
    color: var(--calendar-layout-color) !important
}

.compact-theme-sec hr {
    border-color: #707070
}

.compact-theme-sec .team .member .social {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.box-elegant {
    border-radius: 0 0 4px 4px;
    filter: drop-shadow(0 3px 3.5px rgba(0, 0, 0, 0.16));
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 1rem;
    position: relative;
    margin-bottom: 1.5rem;
    border-top: 9px solid var(--calendar-layout-color) !important
}

.box-elegant .content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start
}

.elegant-theme .btn-call {
    width: auto;
    line-height: 16px;
    border-radius: 3px;
    background-color: var(--calendar-layout-color) !important;
    color: #fff;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 400
}

.elegant-theme .team .member span {
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    text-align: left;
    color: #525970
}

.elegant-theme .member-para {
    margin: 10px 0 0;
    font-weight: 500;
    font-size: 12px !important;
    line-height: 18px;
    text-align: left;
    color: #525970;
    height: 49px
}

.elegant-theme h5.member-heading {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 19px;
    color: #556270;
    line-height: 1.2;
    max-width: 20ch;
    text-overflow: ellipsis;
    overflow: hidden;
    /*white-space:nowrap*/
}

.scrollbar-elegant {
    scrollbar-width: thin;
    scrollbar-color: var(--calendar-layout-color) #fff
}

.scrollbar-elegant::-webkit-scrollbar {
    width: 2px;
    height: 8px
}

.scrollbar-elegant::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid transparent
}

.scrollbar-elegant::-webkit-scrollbar-thumb {
    background-color: var(--calendar-layout-color)
}

.scrollbar-elegant::-webkit-scrollbar-thumb:hover {
    background-color: #e67200
}

.scrollbar-elegant::-webkit-scrollbar-corner, .scrollbar-elegant::-webkit-scrollbar-track {
    background-color: #fff
}

[class^=scrollbar-elegant] {
    height: 430px;
    overflow-y: scroll;
    overflow-x: hidden
}

.elegant-theme .content h4 {
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    color: #525970;
    max-width: 22ch;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.elegant-theme .content p {
    font-weight: 500;
    font-size: 12px;
    line-height: 23px;
    color: #525970;
    margin: 0
}

.elegant-theme .content p.class-min, .elegant-theme .content span.class-min {
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    text-align: left;
    color: var(--calendar-layout-color) !important
}

.elegant-theme-sec hr {
    border-color: #707070
}

.elegant-theme-sec .team .member .social {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.hgt-562 {
    height: 565px
}

@media(min-width:1200px) {
    .rep-theme .container, .rep-theme .container-lg, .rep-theme .container-md, .rep-theme .container-sm, .rep-theme .container-xl {
        max-width: 1000px
    }
}

.rep-theme .select-sec .select2-container--bootstrap4 {
    width: 91% !important
}

.box-classic:hover, .box-compact:hover, .box-elegant:hover, .box:hover, .box-simple:hover {
    box-shadow: 0 10px 22px 10px rgba(27, 38, 49, .1)
}

.classic:hover {
    box-shadow: 0 10px 37px -14px rgba(27, 38, 49, .1)
}

#ultra-theme {
    padding: 10px 0 10px;
    text-align: center
}

#ultra-theme .item {
    display: block;
    width: 100%;
    height: auto
}

#ultra-theme .item p {
    font-weight: 400;
    margin: 0 0 30px 0
}

#ultra-theme .owl-dots {
    display: none
}

#ultra-theme .owl-theme .owl-nav [class*="owl-"] {
    font-size: 40px !important
}

.owl-theme .owl-nav {
    font-size: 60px
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: transparent !important;
    color: var(--calendar-layout-color) !important !important;
    text-decoration: none
}

#ultra-theme .owl-prev {
    position: absolute;
    top: 10%;
    left: -15%;
    color: var(--calendar-layout-color) !important !important
}

#ultra-theme .owl-next {
    position: absolute;
    top: 10%;
    right: -15%;
    color: var(--calendar-layout-color) !important !important
}

#ultra-theme.owl-theme .owl-nav .disabled {
    opacity: .1 !important
}

.fs-12 {
    font-size: 12px !important
}

.fs-13 {
    font-size: 13px !important
}

.fs-14 {
    font-size: 14px !important
}

.fs-15 {
    font-size: 15px !important
}

.fs-17 {
    font-size: 17px !important
}

.fs-18 {
    font-size: 18px !important
}

.fs-19 {
    font-size: 19px !important
}

.fs-20 {
    font-size: 20px !important
}

.cursor-de {
    cursor: default !important
}

.cursor-no {
    cursor: no-drop !important;
    pointer-events: none !important
}

.ultra-compact-theme h5.member-heading {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 19px;
    color: #556270;
    line-height: 1.2;
    max-width: 15ch;
    text-overflow: ellipsis;
    overflow: hidden;
    /*white-space:nowrap;*/
    margin-right: 1rem
}

.classic .content h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
    color: #556270;
    line-height: 1.2;
    max-width: 15ch;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.ultra-theme .owl-item {
    width: 200px !important
}

.opacity-mask .bg-white {
    border-radius: 10px
}

.signup-free .form-control {
    border-radius: 6px
}

.signup-free.input-group .btn {
    border-radius: 0 6px 6px 0 !important
}

@media(max-width:768px) {
    p.member-para {
        height: auto !important;
    }

    .bg-white.shadow.hgt-540, .bg-white.shadow.hgt-562, .hgt-540 {
        height: auto !important;
    }

    .cal-sec {
        padding: 1rem 1rem !important;
    }
}

/* New css */

.form-control {
    display: block;
    width: 100%;
    padding: 0.6125rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1e2022;
    background-color: #fff;
    background-clip: padding-box;
    border: 0.0625rem solid rgba(200, 201, 204, 1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.3125rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-label {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #1e2022;
}

.text-success {
    opacity: 1;
    color: #00c9a7 !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    color: #1e2022 !important;
}

.h1,
h1 {
  font-size: calc(1.26609375rem + 0.193125vw);
}
@media (min-width: 1200px) {
  .h1,
  h1 {
    font-size: 1.3109375rem;
  }
}
.h2,
h2 {
  font-size: calc(1.25625rem + 0.075vw);
}
@media (min-width: 1200px) {
  .h2,
  h2 {
    font-size: 1.2125rem;
  }
}
.h3,
h3 {
  font-size: 1.1484375rem;
}
.h4,
h4 {
  font-size: 0.984375rem;
}
.h5,
h5 {
  font-size: 0.875rem;
}
.h6,
h6 {
  font-size: 0.765625rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.scroll {
    max-height: 11rem;
    overflow-y : auto;
    overflow-x: hidden;
  }

  .scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px
}

.scroll::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid transparent
}

.scroll::-webkit-scrollbar-thumb {
    background-color: var(--calendar-layout-color)
}

.scroll::-webkit-scrollbar-thumb:hover {
    background-color: #e67200
}

.scrollbar-1::-webkit-scrollbar-corner, .scrollbar-1::-webkit-scrollbar-track {
    background-color: #b0b7c4
}
