.tabs {
    width: 100%;
}
.tabs-list{
    display: flex;
    align-items: center;
}

.tabs-item{
    display: none;
}

.tabs-item.active-tab{
    display: block;
}

.tabs-header{
    width: 100%;
}

.tab-link{
    font-size: 14px;
    line-height: 20px;
    border-radius: 8px;
    background-color: #fff;
    padding: 7px 11px;
    color: rgba(19, 21, 21, 0.5);
}

.active-tab .tab-link{
    color: #131515;
    background-color: #eee;
}

.tab-item + .tab-item{
    margin-left: 8px;
}

.tabs-nav{
    margin-bottom: 20px;
}

.draw-radio-block{
    position: absolute;
    top: 20px;
    right: 20px;
}

.draw-clear{
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 22px;
    color: #A6A6A6;
}

.fons-list{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
}

.fons-item{
    padding: 0 4px;
    margin-bottom: 8px;
}

.fons-btn.active{
    border: 1px solid #1A659E;
    color: #004FFF;
    background-color: #fff;
}

.fons-btn{
    height: 44px;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: rgba(19, 21, 21, 0.5);
    padding: 10px 16px;
    border-radius: 5px;
    background-color: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid transparent;
}

.draw-radio-block .custom-radio + .custom-radio{
    margin-left: 15px;
}

.custom-radio {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}
.custom-radio__input {
    position: absolute;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: none;
}
.custom-radio__input-fake {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    width: 30px;
    height: 30px;
    border: 1px solid transparent;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px;
}
.custom-radio__input:checked ~ .custom-radio__input-fake {
    background-image: url(../img/radio-checked.svg);
    min-width: 35px;
    width: 35px;
    height: 35px;
}

.card-white{
    border: 1px solid #A9AEBB;
    background-color: #FFF;
}

.color-gray{
    color: rgba(93,103,126,0.69);
}

.btn--secondary-2{
    color: #9A9A9A;
    background-color: #F4F4F4;
}

.btn--secondary-3{
    color: #fff;
    background-color: #4FC870;
}

.custom-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.custom-checkbox__input {
    position: absolute;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: none;
}
.custom-checkbox__input-fake {
    min-width: 26px;
    width: 26px;
    height: 26px;
    background-image: url(../img/checkbox-border.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.custom-checkbox__input:checked ~ .custom-checkbox__input-fake {
    background-image: url(../img/icon-checked-checkbox.svg);
}

.custom-checkbox__input:disabled + .custom-checkbox__input-fake{
    background-color: #F0F5F9;
    background-image: none;
    border-radius: 8px;
}

.sidebar-2{
    background: #fff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 8%);
    width: 270px;
    position: fixed;
    height: calc(100% - var(--header-fixed-padding));
    left: 0;
    top: var(--header-fixed-padding);
    z-index: 100;
}

.sidebar-2__container{
    padding: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: auto;
    height: 100%;
}

.sidebar-3__container{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.sidebar-2__list-wrap{
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    overflow: auto;
}

.sidebar-3 .sidebar-2__link{
    padding: 8px 12px 8px 12px;
}

.btn--outline-primary-2{
    background-color: rgba(63,165,255,0.1);
    color: #3fa5ff;
    border: 1px solid #3fa5ff;
}

.btn--md-2{
    padding: 5px 34px;
}

.sidebar-2__list{
    width: 100%;
}

.sidebar-2__link{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px
}

.sidebar-3 .sidebar-2__link.active .sidebar-2__pill{
    background-color: #326ab2;
    color: #fff;
}

.sidebar-3 .sidebar-2__link.active::after{
    display: none;
}
.sidebar-2__link-icon{
    display: flex;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    align-items: center;
}

.sidebar-2__item{
    width: 100%;
    margin-bottom: 10px;
}

.sidebar-2__link-text{
    font-size: 15px;
}

.sidebar-2__link.active{
    background: #E8ECED;
    position: relative;
}

.sidebar-2__link.active .sidebar-2__link-icon{
    color: #2b53eb;
}

.sidebar-2__link .sidebar-2__link-icon{
    color: rgba(81,106,120,0.5 );
}

.sidebar-2__pill{
    font-size: 12px;
    border-radius: 5px;
    padding: 1px 5px;
    text-align: center;
    min-width: 27px;
    background-color: #F0F0F0;
}

.sidebar-2__pill.pill-red{
    background-color: #F54E4E;
    color: #fff;
}

.sidebar-2-pl{
    padding-left: 270px;
}

.input-custom__wrap-input{
    position: relative;
}

.input-custom__btn-eye{
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.progress-password{
    font-size: 16px;
    line-height: 16px;
    color: #131515;
    display: flex;
    align-items: center;
}

.progress-password__line{
    height: 8px;
    width: 100%;
    filter: drop-shadow(0px 1px 2px rgba(16,24,40,0.05 ));
    background-color: rgba(93,103,126,0.13 );
    position: relative;
    border-radius: 8px;
    margin: 0 16px;
}

.progress-password__success{
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(-90deg, #10c01c 0.00%, #cfffd2 100.00%);
    height: 8px;
    width: 72%;
    border-radius: 8px;
}

.email-link{
    color: #004FFF;
    text-decoration: underline;
    font-size: 14px;
    line-height: 16px;
}

.modal__subtitle{
    font-size: 14px;
    line-height: 16px;
    color: #898A8A;
}

.border-bottom{
    border-bottom: 1px solid rgba(93,103,126,0.17 );
}



.card-download-list{
    border-radius: 20px;
    filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.16 ));
    background-color: #fff;
    max-width: 583px;
    width: 100%;
    height: max-content;
    margin-left: 128px;
    margin-top: 40px;
}

.card-download-list__title{
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

.card-download-list__subtitle{
    font-size: 12px;
    line-height: 18px;
    color: rgba(51,51,51,0.69 );
}

.card-download-list__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px;
    border-bottom: 1px solid rgba(93,103,126,0.17 );
}

.card-download-list__body{
    padding: 26px;
}

/* .select2-container{
    width: 100%;
} */

.table-hotel-field .table th{
    padding: 6px 0;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
}

.table-hotel-field .table td{
    padding: 6px 0;
    color: #131515;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.table-wrapper .select2-container--default .select2-selection--single{
    filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.02 ));
    border-radius: 5px;
    background: #ffffff;
    border: 1px solid #cccccc;
}

.content-center-box{
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 20px 10px;
}

.table-hotel-field-group{
    padding-left: 64px;
    padding-top: 40px;
    width: 100%;
}

.select-group{
    display: flex;
    align-items: center;
}

.search-form-2{
    display: flex;
    align-items: center;
}

.search-form-2 input{
    border: none;
    padding-left: 10px;
}

.header__body.h-72px{
    min-height: 72px;
}

.task-link{
    color: #87909E;
    font-size: 12px;
    font-weight: 500;
    padding: 0 15px;
}

.task-link.active-task{
    position: relative;
}

.task-link.active-task::before{
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #f54e4e;
    border-radius: 50%;
    right: 0;
    top: 0;
}

.sidebar-2__title-list{
    font-size: 12px;
    font-weight: 500;
    color: #87909E;
    margin-bottom: 12px;
}

.sidebar-3 .sidebar-2__link-icon{
    display: flex;
    justify-content: center;
    width: 23px;
}

.choose-radio{
    display: none;
}

.choose-radio__group-content{
    padding: 12px 16px;
    display: flex;
    border: 1px solid #A9AEBB;
    background-color: #FFF;
}

.choose-the-plan__img{
    width: 32px;
    height: 32px;
    min-width: 32px;
    margin-right: 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0px 1px 1px 0px rgba(91, 104, 113, 0.32), 0px 0px 1px 0px rgba(26, 32, 36, 0.32);
}

.choose-the-plan__group-text{
    display: flex;
    flex-direction: column;
}

.choose-the-plan__title{
    color: #131515;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.choose-the-plan__text{
    color: rgba(19, 21, 21, 0.5);
    font-size: 13px;
    line-height: 20px;
}

.choose-radio:checked + .choose-radio__group-content{
    border: 1px solid #72BF40;
}

.icon-status{
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-service-plan tbody tr{
    height: 36px;
}

.table-service-plan tbody tr td:not(:first-child){
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.table-service-plan tbody tr td:first-child{
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: rgba(19, 21, 21, 0.5);
}

.table-service-plan .table th{
    padding: 12px 10px;
}

.table-service-plan__title-group{
    min-height: 106px;
    display: flex;
    flex-direction: column;
}

.table-service-plan__title{
    color: #131515;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    margin-bottom: 10px;
    flex: auto;
}

.table-service-plan{
    overflow: auto;
}

.label-total{
    display: block;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 6px;
    color: rgba(19, 21, 21, 0.4);
}

.floorplan-vendor .input-custom__input{
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 4px 0px rgba(16, 24, 40, 0.05);
}

.btn--44{
    min-height: 44px;
    padding: 10px;
}

.custom-checkbox__text{
    display: flex;
    align-items: center;
    color: #131515;
    font-size: 14px;
    padding-left: 16px;
}

.service-text-list{
    max-height: 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.service-text-list li{
    margin-bottom: 6px;
    margin-right: 10px;
    max-width: 300px;
}

.service-plan-item{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-plan-item:not(:last-child){
    padding-bottom: 16px;
    border-bottom: 1px solid #ECECEC;
    margin-bottom: 16px;
}

.service-plan-item .service-checkbox{
    min-width: 230px
}

.service-plan-wrap{
    overflow: auto;
    max-height: calc(100vh - 400px);
    min-height: 300px;
}

.service-plan-wrap::-webkit-scrollbar{
    width: 0;
    height: 0;
}

.gx-16{
    --bs-gutter-x: 16px;
}

.ff-caveat{
    font-family: 'Caveat', cursive;
}

.ff-pacifico{
    font-family: 'Pacifico', cursive;
}

.ff-playfair-display{
    font-family: 'Playfair Display', serif;
}

.ff-anonymous-pro{
    font-family: 'Anonymous Pro', monospace;
}

.ff-kalam{
    font-family: 'Kalam', cursive;
}

.ff-kaushan{
    font-family: 'Kaushan Script', cursive;
}
