.waves {
    position: fixed;
    width: 100%;
    height: 10vh;
    bottom: 0;
    right: 0;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 768px) {
    .waves {
        display: none;
    }
}

body, h1, h2, h3, h4, h5, h6, label, p, select, kbd, li, ul, a {
    font-family: "Bardiya" !important;
    font-size: 18px;
    font-weight: 500;
}

input.persian_date {
    font-family: "Bardiya" !important;
}

textarea, input {
    font-family: "Bardiya" !important;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

p.infosection {
    text-align: center;
    font-size: xxx-large;
    font-weight: 500;
    margin: 0 auto 30px auto;
    width: 90%;
    text-shadow: 3px 3px 5px white;

}

.area {
    height: 95px !important;
}

.divider {
    --b: 1px;
    --w: 150px;
    --g: 15px;
    --c: rgba(182, 218, 236, 0.3);
    width: fit-content;
    padding: 0 1em;
    line-height: 1.6em;
    border: 1px solid;
    background-size: 51% 100%;
    background-origin: border-box;
    background-repeat: no-repeat;
    background-color: var(--c);
    border-radius: 30px;
    border-image: linear-gradient(#0000 calc(50% - var(--b) / 2), var(--c) 0 calc(50% + var(--b) / 2), #0000 0) 1/0 var(--w) / calc(var(--w) + var(--g));
    margin-inline: auto;
    margin-bottom: 10px;
    margin-top: 10px;
}

body {
    font-size: 15px;
    color: #666;
    margin: 0;
}

:focus {
    outline: none;
}

textarea {
    resize: none;
}

input, textarea, select, button {
    font-size: 13px;
    color: #666;
}

.btnAdd:hover {
    background-color: rgb(182, 218, 236);
    border-color: rgba(182, 218, 236, 0.9);
    box-shadow: 0 2px 2px 0 rgba(182, 218, 236, 0.2), 0 3px 1px -2px rgba(182, 218, 236, 0.4), 0 1px 5px 0 rgba(182, 218, 236, 0.6);
}

.btnAdd {
    border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    height: 41px;
    min-width: 41px;
    width: 41px;
    padding: 0;
    overflow: hidden;
    display: inline-block;
    position: relative;
    line-height: 41px;
    color: #fff;
    background-color: lightgray;
    border-color: darkgray;
    box-shadow: 0 2px 2px 0 rgba(211, 211, 211, 0.3), 0 3px 1px -2px rgba(211, 211, 211, 0.5), 0 1px 5px 0 rgba(211, 211, 211, 0.7);
}

p, h1, h2, h3, h4, h5, h6, ul {
    margin: 0;
}

h4 {
    font-size: 22px;
    color: #333;
    top: -38px;
    position: absolute;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

textarea {
    resize: none;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    border: none;
}

select option[value=""][disabled] {
    display: none;
}

img {
    max-width: 80%;
    vertical-align: middle;
}

body {
    background-color: rgba(182, 218, 236, 0.3);
    background-size: cover;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.fade-in {
    opacity: 1;
    animation: fadeIn 1s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.wrapper {
    height: 100vh;
    margin: auto;
    display: flex;
    align-items: center;
}

.wrapper .image-holder {
    width: 32%;
    text-align: center;
}

.wrapper form {
    width: 68%;
    height: 100vh;
}

.wizard > .steps .current-info, .wizard > .steps .number {
    display: none;
}

#wizard {
    min-height: 100%;
    background: #fff;
    padding: 1px 25px 0 25px;
    direction: rtl;
}

.title {
    align-items: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    -o-align-items: center;
    -ms-align-items: center;
}

.current-step {
    position: absolute;
    display: flex;
    width: 70px;
    height: 70px;
    top: 100px;
    font-size: 1.7rem;
    right: 100px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ebebeb;
    color: #999;
    border: 2px solid white;
    font-weight: bold;
    animation: grow 2s ease-in-out infinite;
}

@keyframes grow {
    0% {
        transform: scale(1);
        border-width: 2px;
    }
    50% {
        transform: scale(1.2);
        border-width: 4px;
    }
    100% {
        transform: scale(1);
        border-width: 2px;
    }
}

.title .step-number {
    display: inline-block;
    width: 100%;
    height: 7px;
    background: rgba(182, 218, 236, 0.3);
}

.title .step-text {
}

.current .title .step-number {
    background: rgb(182, 218, 236);
    color: #fff;
}

.current .title .step-text {
    color: #4966b1;
}

.steps {
    margin-bottom: 0px;
    margin-top: 30px;
}

.steps ul {
    display: flex;
    position: relative;
}

.steps ul li {
    width: 25%;
    margin-left: 10px;
}

.steps ul li a {
    display: inline-block;
    width: 100%;
    height: 7px;
    background: #e6e6e6;
    border-radius: 3.5px;
}

.steps ul li.first a, .steps ul li.checked a {
    background: rgb(182, 218, 236);
    transition: all 0.5s ease;
}


.form-row {
    margin-bottom: 15px;
}

.form-row label {
    margin-bottom: 8px;
    display: block;
}

.form-row .label2 {
    margin-bottom: 2px !important;
}

.form-row.form-group {
    display: flex;
}

.form-row.form-group .form-holder {
    width: 33.33%;
    margin-left: 21px;
}

.form-row.form-group .form-holder:last-child {
    margin-left: 0;
}

.form-holder {
    position: relative;
}

.text-center {
    text-align: center;
    cursor: pointer;
    font-size: x-large;
}

svg:hover + label.pop, div.text-center:hover + label.pop {
    opacity: 1;
}

.h {
    height: 200px !important;
    margin: 30px 0px !important;
    padding: 0 !important;
    display: flow;
}

.pop {
    position: absolute;
    transition: all 200ms ease;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 22px !important;
    background-color: seashell;
}

.form-holder i {
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 25px;
    color: #999;
    opacity: 0.5;
}

.form-holder i.big {
    position: absolute;
    top: 3px;
    left: 1px;
    font-size: 45px;
    color: #999;
    opacity: 0.5;
}

.form-control {
    height: 42px;
    border: 1px solid #e6e6e6;
    background: none;
    width: 100%;
    padding: 0 18px 0 45px;
}

.content {
    /*min-height: 600px;*/
}

.form-control:focus {
    border-color: #f3d4b7;
}

.form-control::-webkit-input-placeholder {
    color: #999;
    font-size: 13px;
}

.form-control::-moz-placeholder {
    color: #999;
    font-size: 13px;
}

.form-control:-ms-input-placeholder {
    color: #999;
    font-size: 13px;
}

.form-control:-moz-placeholder {
    color: #999;
    font-size: 13px;
}

textarea.form-control {
    padding-top: 11px;
    padding-bottom: 11px;
}

.option {
    color: #999;
}

.actions ul {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}

.actions ul.step-last {
    justify-content: flex-end;
}

.actions ul.step-last li:first-child {
    display: none;
}

.actions li a {
    padding: 0;
    border: none;
    display: inline-flex;
    height: 55px;
    border-radius: 13px;
    width: 135px;
    align-items: center;
    background: rgba(182, 218, 236, 0.7);
    cursor: pointer;
    position: relative;
    padding-right: 41px;
    color: #333;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-weight: 400;
}

.actions li a:before {
    content: '\e5c4';
    position: absolute;
    top: 19px;
    left: 20px;
    font-family: "Material Icons";
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.actions li a:hover {
    background: rgb(182, 218, 236);
}

.actions li a:hover:before {
    -webkit-animation-name: hvr-icon-wobble-horizontal;
    animation-name: hvr-icon-wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.actions li[aria-disabled="true"] a {
    display: none;
}

.actions li:first-child a {
    background: #e6e6e6;
    padding-left: 48px;
}

.actions li:first-child a:before {
    content: '\e5c8';
    left: 26px;
}

.actions li:first-child a:hover {
    background: rgba(182, 218, 236, 0.5);
}

.actions li:last-child a {
    padding-left: 29px;
    width: 207px;
    font-weight: 400;
    background: #abe4a8 !important;
}

.actions li:last-child a:before {
    left: 30px;
}

.checkbox {
    position: relative;
}

.checkbox label {
    padding-left: 21px;
    cursor: pointer;
    color: #999;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox input:checked ~ .checkmark:after {
    display: block;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 12px;
    width: 13px;
    border-radius: 2px;
    background-color: #ebebeb;
    border: 1px solid #ccc;
    font-family: Material-Design-Iconic-Font;
    color: #000;
    font-size: 10px;
    font-weight: bolder;
}

.checkmark:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    content: '\f26b';
}

.checkbox-circle {
    margin-top: 41px;
    margin-bottom: 46px;
}

.checkbox-circle label {
    cursor: pointer;
    padding-left: 26px;
    color: #999;
    display: block;
    margin-bottom: 15px;
    position: relative;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltiptext {
    visibility: hidden;
    width: 350px;
    background-color: seashell;
    color: gray;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    position: absolute;
    z-index: 1;
    bottom: 105%;
    right: 50%;

    opacity: 0;
    transition: opacity 0.3s;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: seashell transparent transparent transparent;
}

.tooltip:hover + .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.checkbox-circle label.active .tooltip {
    display: block;
}

.checkbox-circle input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-circle input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-circle .checkmark {
    position: absolute;
    top: 11px;
    left: 0;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: #ebebeb;
    border: 1px solid #cdcdcd;
}

.checkbox-circle .checkmark:after {
    content: "";
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #666666;
    position: absolute;
    display: none;
}

.checkbox-circle .tooltip {
    padding: 9px 22px;
    background: #f2f2f2;
    line-height: 1.8;
    position: relative;
    margin-top: 16px;
    margin-bottom: 28px;
    display: none;
}

.checkbox-circle .tooltip:before {
    content: "";
    border-bottom: 10px solid #f2f2f2;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    position: absolute;
    bottom: 100%;
}

.product {
    margin-bottom: 33px;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 30px;
}

.item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.item .left {
    display: flex;
    align-items: center;
}

.item .thumb {
    display: inline-flex;
    width: 100px;
    height: 90px;
    justify-content: center;
    align-items: center;
    border: 1px solid #f2f2f2;
}

.item .purchase {
    display: inline-block;
    margin-left: 21px;
}

.item .purchase h6 {
    font-family: "Poppins-Medium";
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 500;
}

.item .purchase h6 a {
    color: #333;
}

.item .price {
    font-size: 16px;
}

.checkout {
    margin-bottom: 44px;
}

.checkout span.heading {
    font-family: "Poppins-Medium";
    font-weight: 500;
    margin-left: 5px;
}

.checkout .subtotal {
    margin-bottom: 18px;
}

.checkout .shipping {
    margin-bottom: 19px;
}

.checkout .shipping span.heading {
    margin-left: 4px;
}

.checkout .total-price {
    font-family: "Muli-Bold";
    color: #333;
    font-weight: 700;
}

@-webkit-keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes hvr-icon-wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(6px);
        transform: translateX(6px);
    }
    33.3% {
        -webkit-transform: translateX(-5px);
        transform: translateX(-5px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@media (max-width: 1500px) {
    .wrapper {
        height: auto;
    }

    .divider {
        display: none !important;
    }

    .waves {
        margin-bottom: -43px;
    }
}

@media (max-width: 1199px) {
    .wrapper {
        height: 100vh;
    }

    #wizard {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 991px) {
    .wrapper {
        justify-content: center;
    }

    .wrapper .image-holder {
        display: none;
    }

    .wrapper form {
        width: 100%;
    }

    #wizard {
        margin-right: 0;
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .form-holder, .form-holder {
        width: 100% !important;
    }

    .wrapper {
        height: auto;
        display: block;
    }

    .wrapper .image-holder {
        width: 100%;
        display: block;
    }

    .wrapper form {
        width: 100%;
    }

    #wizard {
        min-height: unset;
        padding: 5px 14px 40px;
    }

    .form-row.form-group {
        display: block;
    }

    .form-row.form-group .form-holder {
        width: 100%;
        margin-left: 0;
        margin-bottom: 24px;
    }

    .item .purchase {
        margin-left: 11px;
    }
}

/*# sourceMappingURL=style.css.map */

.wizard .content .purpose-radio {
    position: relative;
    display: inline-block;
    padding: 5px;
}

.wizard .content .purpose-radio .purpose-radio-input, .purpose-radio-input-select {
    position: absolute;
    opacity: 0;
}

.wizard .content .purpose-radio .purpose-radio-input:checked + .purpose-radio-label {
    border-color: #00d69f;
}

.wizard .content .purpose-radio .purpose-radio-input:checked + .purpose-radio-label .label-icon {
    color: #00d69f;
    text-align: center;
}

.wizard .content .purpose-radio .purpose-radio-input:checked + .purpose-radio-label .label-icon .label-icon-default {
    display: none;
}

.wizard .content .purpose-radio .purpose-radio-input:checked + .purpose-radio-label .label-icon .label-icon-active {
    display: inline-block;
}

.wizard .content .purpose-radio .purpose-radio-input:checked + .purpose-radio-label .label-text, .wizard .content .purpose-radio .purpose-radio-input:checked + .purpose-radio-label-select .label-text {
    color: #00d69f;
    font-weight: bold;
}

.wizard .content .purpose-radio .purpose-radio-label {
    display: -webkit-box;
    display: flex;
    width: 70px;
    height: 70px;
    max-width: 100%;
    border: 2px solid #7b7f89;
    border-radius: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.wizard .content .purpose-radio .purpose-radio-label-select {
    display: -webkit-box;
    display: flex;
    width: 150px;
    height: 40px;
    max-width: 100%;
    background: #e6e6e6;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

@media (max-width: 575px) {
    .wizard .content .purpose-radio .purpose-radio-label {
        width: 60px;
        height: 60px;

    }

    p.infosection {
        font-size: x-large;
        margin-bottom: 0;
    }

    .h {
        height: 105px !important;
        margin: 30px 0px !important;
        padding: 0 !important;
        display: flex;
    }

    .h .text-center {
        width: 200%;
    }

    .pop {
        display: none !important;
    }

    .radio-custom-label {
        top: 30px;
    }
}

.wizard .content .purpose-radio .purpose-radio-label .label-icon {
    font-size: 21px;
    color: #000000;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.wizard .content .purpose-radio .purpose-radio-label .label-icon .label-icon-active {
    display: none;
}

.wizard .content .purpose-radio .purpose-radio-label .label-text {
    font-size: 16px;
    color: #030303;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.wizard .content .purpose-radios-wrapper {
    margin-top: 60px;
}

.wizard .content .purpose-radios-wrapper .purpose-radio {
    margin-left: 18px;
    max-width: calc(33% - 18px);
}

@media (max-width: 575px) {
    .wizard .content .purpose-radios-wrapper .purpose-radio {
        margin-left: 0;
        margin-bottom: 18px;
        width: 100%;
        max-width: none;
    }
}

.touch {
    display: none !important;
}

@media (pointer: coarse) {
    .slist {
        display: none !important;
    }

    .touch {
        display: flex !important;
    }
}

.wizard .content .purpose-radios-wrapper .purpose-radio:last-child {
    margin-left: 0;
}


.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    width: 300px;
    text-align: right;
    direction: rtl;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 500;
}

.alert-dismissible {
    padding-right: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-primary {
    color: #51145c;
    background-color: #ebd4ef;
    border-color: #e3c3e9;
}

.alert-primary hr {
    border-top-color: #dab0e2;
}

.alert-primary .alert-link {
    color: #2c0b32;
}

.alert-secondary {
    color: #3d3d3d;
    background-color: #e3e3e3;
    border-color: #d8d8d8;
}

.alert-secondary hr {
    border-top-color: #cbcbcb;
}

.alert-secondary .alert-link {
    color: #242424;
}

.alert-success {
    color: #285b2a;
    background-color: #dbefdc;
    border-color: #cde9ce;
}

.alert-success hr {
    border-top-color: #bbe1bd;
}

.alert-success .alert-link {
    color: #18381a;
}

.alert-info {
    color: #00626e;
    background-color: #ccf2f6;
    border-color: #b8ecf3;
}

.alert-info hr {
    border-top-color: #a2e6ef;
}

.alert-info .alert-link {
    color: #00353b;
}

.alert-warning {
    color: #854f00;
    background-color: #ffeacc;
    border-color: #ffe2b8;
}

.alert-warning hr {
    border-top-color: #ffd89f;
}

.alert-warning .alert-link {
    color: #523100;
}

.alert-danger {
    color: #7f231c;
    background-color: #fdd9d7;
    border-color: #fccac7;
}

.alert-danger hr {
    border-top-color: #fbb3af;
}

.alert-danger .alert-link {
    color: #551713;
}

.alert-light {
    color: #7f7f7f;
    background-color: #fdfdfd;
    border-color: #fcfcfc;
}

.alert-light hr {
    border-top-color: #efefef;
}

.alert-light .alert-link {
    color: #666666;
}

element.style {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -9px;
    z-index: 1033;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.alert [data-notify="dismiss"] {
    margin-right: 5px;
}

.alert .close {
    line-height: .5;
}

.alert [data-notify="dismiss"] {
    margin-right: 5px;
}

.alert [data-notify="dismiss"] {
    margin-right: 5px;
}

.alert .close {
    line-height: .5;
}

.alert [data-notify="dismiss"] {
    margin-right: 5px;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: inherit;
}

button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: .5;
}

.alert-dark {
    color: #222222;
    background-color: #d9d9d9;
    border-color: #cacaca;
}

.alert-dark hr {
    border-top-color: #bdbdbd;
}

.alert-dark .alert-link {
    color: #090909;
}

.rtl .alert button.close {
    left: 10px !important;
    right: auto !important;
}

.rtl .alert span[data-notify="icon"] {
    right: 15px;
    left: auto;
}

.rtl .alert.alert-with-icon {
    padding-right: 65px;
    padding-left: 15px;
}

.rtl .alert.alert-with-icon i[data-notify="icon"] {
    right: 15px;
    left: auto;
}

.bootstrap-select .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    pointer-events: none;
    opacity: 0.9;
    box-sizing: border-box;
}

alert.alert-with-icon i[data-notify="icon"] {
    display: block;
    left: 15px;
    position: absolute;
    margin-top: -39px;
    font-size: 20px;
    background-color: #fff;
    padding: 9px;
    border-radius: 50%;
    max-width: 38px;
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.alert i[data-notify="icon"] {
    display: none;
}

.alert [data-notify="dismiss"] {
    margin-right: 5px;
}

.alert span[data-notify="icon"] {
    right: 15px;
    left: auto;
}

.alert.alert-with-icon {
    padding-right: 65px;
    padding-left: 15px;
}

.alert.alert-with-icon i[data-notify="icon"] {
    right: 15px;
    left: auto;
}

.alert.alert-with-icon i[data-notify="icon"] {
    right: 15px;
    left: auto;
}


.alert, .alert.alert-default {
    background-color: white;
    color: #555555;
}

.alert a, .alert .alert-link, .alert.alert-default a, .alert.alert-default .alert-link {
    color: #555555;
}

.alert.alert-inverse {
    background-color: #292929;
    color: #fff;
}

.alert.alert-inverse a, .alert.alert-inverse .alert-link {
    color: #fff;
}

.alert.alert-primary {
    background-color: #a72abd;
    color: #ffffff;
}

.alert.alert-primary a, .alert.alert-primary .alert-link {
    color: #ffffff;
}

.alert.alert-success {
    background-color: #55b559;
    color: #ffffff;
}

.alert.alert-success a, .alert.alert-success .alert-link {
    color: #ffffff;
}

.alert.alert-info {
    background-color: #00cae3;
    color: #ffffff;
}

.alert.alert-info a, .alert.alert-info .alert-link {
    color: #ffffff;
}

.alert.alert-warning {
    background-color: #ff9e0f;
    color: #ffffff;
}

.alert.alert-warning a, .alert.alert-warning .alert-link {
    color: #ffffff;
}

.alert.alert-danger {
    background-color: #f55145;
    color: #ffffff;
}

.alert.alert-danger a, .alert.alert-danger .alert-link {
    color: #ffffff;
}

.alert.alert-rose {
    background-color: #ea2c6d;
    color: #ffffff;
}

.alert.alert-rose a, .alert.alert-rose .alert-link {
    color: #ffffff;
}

.alert-info, .alert-danger, .alert-warning, .alert-success, .alert-rose {
    color: #ffffff;
}

.alert-default a, .alert-default .alert-link {
    color: rgba(0, 0, 0, 0.87);
}

.alert span {
    display: block;
    max-width: 89%;
}

.alert.alert-danger {
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(244, 67, 54, 0.4);
}

.alert.alert-danger i {
    color: #f44336;
}

.alert.alert-warning {
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(255, 152, 0, 0.4);
}

.alert.alert-warning i {
    color: #ff9800;
}

.alert.alert-success {
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(76, 175, 80, 0.4);
}

.alert.alert-success i {
    color: #4caf50;
}

.alert.alert-info {
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(0, 188, 212, 0.4);
}

.alert.alert-info i {
    color: #00bcd4;
}

.alert.alert-primary {
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(156, 39, 176, 0.4);
}

.alert.alert-primary i {
    color: #9c27b0;
}

.alert.alert-rose {
    box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(233, 30, 99, 0.4);
}

.alert.alert-rose i {
    color: #e91e63;
}

.alert.alert-with-icon {
    margin-top: 43px;
    padding-left: 66px;
}

.alert.alert-with-icon i[data-notify="icon"] {
    display: block;
    left: 15px;
    position: absolute;
    margin-top: -39px;
    font-size: 20px;
    background-color: #fff;
    padding: 9px;
    border-radius: 50%;
    max-width: 38px;
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.alert .close {
    line-height: .5;
}

.alert .close i {
    color: #fff;
    font-size: 11px;
}

.alert .close:focus {
    outline: none;
}

.alert i[data-notify="icon"] {
    display: none;
}

.alert .alert-icon {
    display: block;
    float: left;
    margin-right: 1.071rem;
}

.alert .alert-icon i {
    margin-top: -7px;
    top: 5px;
    position: relative;
}

.alert [data-notify="dismiss"] {
    margin-right: 5px;
}

.alert.alert-with-icon i[data-notify="icon"] {
    display: block;
    left: 15px;
    position: absolute;
    margin-top: -39px;
    font-size: 20px;
    background-color: #fff;
    padding: 9px;
    border-radius: 50%;
    max-width: 38px;
    box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.alert i[data-notify="icon"] {
    display: none;
}

.alert [data-notify="dismiss"] {
    margin-right: 5px;
}

.alert span[data-notify="icon"] {
    right: 15px;
    left: auto;
}

.alert.alert-with-icon {
    padding-right: 65px;
    padding-left: 15px;
}

.alert.alert-with-icon i[data-notify="icon"] {
    right: 15px;
    left: auto;
}

.txt-blue {
    color: #7abaff;
}

table {
    border-collapse: collapse;
}

th {
    text-align: inherit;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.01);
}

.table-hover tbody tr:hover {
    background-color: rgba(182, 218, 236, 0.7);
}

.table .thead-dark th {
    color: #000;
    background-color: rgba(182, 218, 236, 0.3);
    border-radius: 15px;
    border-left: 5px solid #fff;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.table thead th {
    border: none;
    padding: 20px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.table tbody tr {
    margin-bottom: 10px;
    -webkit-box-shadow: 0px 5px 12px -12px rgba(0, 0, 0, 0.29);
    -moz-box-shadow: 0px 5px 12px -12px rgba(0, 0, 0, 0.29);
    box-shadow: 0px 5px 12px -12px rgba(0, 0, 0, 0.29);
}

.table tbody th, .table tbody td {
    border: none;
    padding: 5px 30px 5px 30px;
    font-size: 14px;
    text-align: center;
}

.table tbody td .close span {
    font-size: 12px;
    color: #dc3545;
}

table tr:nth-child(even) {

    color: #212529;
    background-color: rgba(0, 0, 0, 0.075);
}

.slist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.slist li {
    margin: 6px;
    padding: 3px 5px 0 15px;
    border-radius: 10px;
    height: 55px;
    border: 1px solid #dfdfdf;
    display: flex;
    flex-direction: row-reverse;
    background: aliceblue;
    cursor: pointer;
}

.slist li.hint {
    border: 1px solid #ffc49a;
}

.relative {
    position: relative !important;
    height: fit-content;
    left: 0 !important;
    top: 10px !important;
    background-color: transparent;
    white-space: nowrap;
}

.slist li.active {
    border: 1px solid #ffa5a5;
    background: #7abaff !important;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

select:invalid, select:disabled {
    color: #999 !important;
}

.dot {
    cursor: pointer;
    height: 30px;
    width: 30px;
    margin: 0 2px;
    cursor: pointer;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

.radio-custom {
    opacity: 0;
    position: absolute;
}

.radio-custom, .radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
}

.radio-custom-label {
    position: relative;
}

.radio-custom + .radio-custom-label:before {
    content: '';
    background: #fff;
    border: 2px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 7px;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
}

.radio-custom + .radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked + .radio-custom-label:before {
    content: "\e876";
    font-family: 'Material Icons';
    color: dodgerblue;
    border: 2px solid;
}

.radio-custom:focus + .radio-custom-label {
    outline: 1px solid #ddd;
}

#loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('/static/wizard/Preloader.gif') center no-repeat #fff;
}

/*switch button */
.switchFilter {
    width: 0;
    display: inline-block;
    background-color: #DB6576;
    position: absolute;
    border-radius: 18px;
    left: 0;
    opacity: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    -webkit-transition: all 0.4s cubic-bezier(0, 0, 0.25, 1);
    -moz-transition: all 0.4s cubic-bezier(0, 0, 0.25, 1);
    transition: all 0.4s cubic-bezier(0, 0, 0.25, 1);
}

label.n {
    cursor: pointer;
    text-transform: uppercase;
    border: 1px solid #3D4349;
    width: 85px;
    padding: 5px 0;
    border-radius: 18px;
    margin: 0 !important;
    text-align: center;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    margin-right: 10px;
}

.switchn {
    display: inline-block;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    direction: ltr;
    z-index: 1;
    margin: 0;
}

.switchn input[type=radio] {
    visibility: hidden;
    position: absolute;
    height: 100%;
}

.switchn input[type=radio]#yes:checked ~ label[for=yes], .switchn input[type=radio]#yesc:checked ~ label[for=yesc] {
    color: white;
    border: 1px solid #55b559;
}

.switchn input[type=radio]#yes:checked ~ .switchFilter, .switchn input[type=radio]#yesc:checked ~ .switchFilter {
    left: 0;
    opacity: 1;
    width: 85px;
    background-color: #55b559;
}

.switchn input[type=radio]#no:checked ~ label[for=no], .switchn input[type=radio]#noc:checked ~ label[for=noc] {
    color: white;
    border: 1px solid #DB6576;
}

.switchn input[type=radio]#no:checked ~ .switchFilter, .switchn input[type=radio]#noc:checked ~ .switchFilter {
    left: 90px;
    background-color: #DB6576;
    width: 85px;
    opacity: 1;
}


/*------------------------------------------------------------------*/
label.m {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
}

label.m input {
    position: absolute;
    visibility: hidden;
}

label.m input:checked + span {
    background-color: rgba(0, 0, 0, 0.05);
}

label.m input:checked + span:before {
    box-shadow: inset 0 0 0 10px rgba(182, 218, 236, 0.7);
}

label.m span {
    display: flex;
    align-items: center;
    padding: 0.375em 0.75em 0.375em 0.375em;
    border-radius: 99em;
    transition: 0.25s ease;
}

label.m span:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

label.m 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 3px rgba(182, 218, 236, 0.7);
        margin: 0 -1px 0 9px;
}