/*Home Calc Styles*/
.calc-stepper {
    background: #FFFFFF;
    box-shadow: 0 6px 26px rgba(63, 63, 63, 0.08), 0 8px 36px rgba(63, 63, 63, 0.04);
    border-radius: 12px;
    padding: 24px 8px 0;
    font-family: "GothamPro";
    min-height: 577px;
    display: flex;
    flex-wrap: wrap;
}

.calc-stepper__title {
    padding: 0 16px 24px;
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    color: #0B1633;
    font-family: "GothamPro-Bold";
    display: flex;
}

.calc-stepper__title:before {
    content: '';
    width: 24px;
    height: 24px;
    margin-right: 8px;
    display: inline-block;
    background: url("../images/calc/calc-stepper__title.svg") center no-repeat;

}

/*Stepper*/
.calc-stepper .accordion-button {
    letter-spacing: 0.01em;
    color: #2E4B65;
    font-weight: 500;
    font-family: "GothamPro-Medium";
    font-size: 13px;
    line-height: 16px;
    background: rgba(102, 80, 188, 0.1);
    border: 1px solid rgba(102, 80, 188, 0.32);
    border-radius: 6px !important;
    padding: 7px 16px;
}

.calc-stepper .accordion-button::after {
    background: url(/images/calc/calc-stepper__arrow.svg) no-repeat;
}

.calc-stepper .accordion-button span {
    font-weight: 400;
    font-family: "GothamPro";
    margin-left: 5px;
}

.form-control:focus {
    box-shadow: none;
}

.calc-stepper__step {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    background: #6650BC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

/*end Stepper*/

/*Steps*/
.calc-stepper .form-group:not(:last-child) {
    margin-bottom: 24px;
}

.calc-stepper .accordion-item {
    border: none;
}

.calc-stepper .accordion-body {
    padding: 24px 16px 16px;
}

.calc-stepper .accordion-item:not(:last-of-type) {
    margin-bottom: 8px;
}

.calc-stepper__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.calc-stepper__body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/*Quantity*/
.calc-stepper .input-pages-words {
    margin: 0 8px;
    text-align: center;
}

.calc-stepper .plus-minus-input .btn__pages {
    background: #FCFCFD;
    border: 1px solid #DCDFE9;
    border-radius: 6px;
    height: 48px;
    width: 48px;
}

.calc-stepper .plus-minus-input ._pages_decr {
    background: url(/images/calc/subtract.svg) center no-repeat;
}

.calc-stepper .plus-minus-input ._pages_incr {
    background: url(/images/calc/add.svg) center no-repeat;
}

/*END Quantity*/

/*Select*/
.filter-single-wrap .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 10px 36px 10px 16px;
    font-size: 14px;
}

.filter-single-wrap .select2-container {
    width: 100% !important;
}

.filter-single-wrap .select2-container .select2-selection--single {
    height: auto;
    background: #FCFCFD;
    border: 1px solid #DCDFE9;
    border-radius: 6px !important;
}

.filter-single-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 24px;
    width: 24px;
    position: absolute;
    top: calc(50% - 12px);
    right: 12px;
    background: url(/images/calc/calc-stepper__arrow.svg) no-repeat;
    transition: transform 0.5s ease;
}

.filter-single-wrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: rotate(180deg);
}

.filter-single-wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container.select2-container--default .select2-results > .select2-results__options {
    max-height: 208px;
    padding-top: 8px;
}

.select2-container.select2-container--open .select2-dropdown {
    border-top: 1px solid #EAEDF0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin-top: 4px;
}

.select2-container .select2-results__option {
    padding: 10px 16px 9px;
    color: #2E4B65;
    font-size: 14px;
}

.select2-container.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container.select2-container--default .select2-results__option--selected {
    color: #0B1633;
    background: rgba(240, 237, 248, 0.5);
}

/*END Select*/

/*Login*/
.toggle-password {
    width: 20px;
    height: 14px;
    display: block;
    background: url(/images/calc/toggle-password-icon.svg) center no-repeat;
    position: absolute;
    top: 16px;
    right: 12px;
    cursor: pointer;
}

.toggle-password--hide {
    background: url(/images/calc/toggle-password-icon-hide.svg) center no-repeat;
}

.col-password__inner {
    position: relative;
}

.calc-stepper .form-control {
    background: #FCFCFD;
    border-color: #DCDFE9;
    border-radius: 6px;
}

.col--password .form-control {
    padding-right: 40px;
}

/*END Login*/

/*Buttons*/
.icon-tooltip {
    background: url(/images/calc/icon-info.svg) center no-repeat;
    width: 14px;
    height: 14px;
    display: inline-block;
    cursor: pointer;
    position: relative;
    top: 2px;
}

[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
}

[data-tooltip]:before, [data-tooltip]:after {
    content: '';
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

[data-tooltip]:before {
    position: absolute;
    width: auto;
    background: rgba(53, 56, 57, 0.9);
    content: attr(data-tooltip);
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    line-height: 16px;
    text-align: center;
    z-index: 8;
    border-radius: 12px;
    bottom: calc(100% + 10px);
    left: calc(50% - 75px);
    padding: 9px 12px;
    min-width: 150px;
}

[data-tooltip]:after {
    position: absolute;
    width: 0;
    bottom: calc(100% + 5px);
    left: 1px;
    border-top: 5px solid rgba(51, 51, 51, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    font-size: 0;
    line-height: 0;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after {
    visibility: visible;
    opacity: 1;
}

.btn-group-toggle {
    margin-right: -8px;
}

.btn-group-toggle .btn-lvl {
    background: #FCFCFD;
    border: 1px solid #DCDFE9;
    border-radius: 6px !important;

    margin: 0 8px;
    height: 48px;
    flex: 1 0 0%;
    max-width: 100%;

    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #2E4B65;
    font-family: "GothamPro";

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-check:active + .btn-lvl,
.btn-check:checked + .btn-lvl,
.btn-lvl.active,
.btn-lvl:active,
.show > .btn-lvl.dropdown-toggle {
    background: #6650BC;
    color: #fff;
}

/*END Buttons*/

/*Discount*/
.col-discount__inner {
    background: #F8F8F9;
    border: 1px dashed rgba(46, 75, 101, 0.32);
    border-radius: 6px;
    padding: 9px 12px;
}

.col__discount .discount__input {
    background: #F8F8F9;
    border-color: #F8F8F9;
    padding: 0 10px 0 0;
    height: 30px;
    margin-right: 1px;
}

.discount__btn {
    background: #6650BC;
    border-color: #6650BC;
    border-radius: 4px !important;

    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    min-width: 92px;
    padding: 2px 10px;
}

@media (min-width: 992px) {
    .discount__btn:hover {
        color: #6650BC;
        background: #fff;
    }
}
/*END Discount*/

.calc-stepper .alert-error {
    color: red;
    font-size: 12px;
    margin-top: 4px;
}

.error {
    border-color: red !important;
}
/*END Steps*/

/*Calc Bottom*/

.calc-stepper__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 17px;
    background: #FCFCFD;
    border-top: 1px solid #DCDFE9;
    margin-left: -8px;
    margin-right: -8px;
    padding: 20px 24px;
    border-radius: 0 0 12px 12px;
}

.calc-stepper__bottom .col-price .title-calc {
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0.01em;
    color: #2E4B65;
    margin: 0 0 4px 0;
}

.calc-stepper__bottom .price-total {
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    color: #0B1633;
    display: flex;
    align-items: center;
    font-family: "GothamPro-Bold";
}

.calc-stepper__bottom .col-proceed {
    position: relative;
    top: 13px;
    width: 208px;
    max-width: 100%;
}

.calc-stepper__bottom .btn-procide-calc {
    min-width: 224px;
}

@media (max-width: 767px) {
    .calc-stepper__bottom .btn-procide-calc {
        min-width: 148px;
    }
}