/* Checked */
.box-check-type input {
    position: absolute;
    visibility: hidden;
}
.box-check-type label {
    display: inline-flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    margin:0;
}
.box-check-type label .name-text {
    flex: 1;
    margin-left: 6px;
    position: relative;
    top: 2px;
    font-size:13px;
    line-height:20px;
    color:#858D9A;
}
.box-check-type label .check {
    opacity: 1;
    visibility: visible;
    transition: all .3s;
    width: 20px;
    display: block;
}
.box-check-type label .checked {
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
    width: 20px;
    display: block;
}
.box-check-type input:checked~label .checked {
    opacity: 1;
    visibility: visible;
}
.box-check-type input:checked~label .check {
    opacity: 0;
    visibility: hidden;
}


.text-size-13-dark {
    font-size: 13px;
    line-height: 1.3;
    color: var(--dark-color-text);
}
.text-size-13-gray {
    font-size: 13px;
    line-height: 1.3;
    color:var(--gray-color-text);
}
.text-size-14-smb {
    color: var(--dark-color-text);
    font-size:14px;
    font-weight: 600;
    line-height: 1.3;
}
.text-size-14-dark {
    font-size: 14px;
    line-height: 1.3;
    color: var(--dark-color-text);
}
.text-size-14-gray {
    font-size: 14px;
    line-height: 1.3;
    color:var(--gray-color-text);
}

.text-size-16-dark {
    font-size: 16px;
    line-height: 22px;
    color: var(--dark-color-text);
}
.text-size-15-rgl {
    font-size: 15px;
    line-height: 1.3;
    color: var(--dark-color-text);
}
.text-size-15-rgl-gray {
    font-size: 15px;
    line-height: 1.3;
    color:var(--gray-color-text);
}
.text-size-15-medium {
    font-size: 15px;
    line-height: 1.3;
    font-weight:500;
}
.text-size-15-medium-gray {
    font-size: 15px;
    line-height: 1.3;
    font-weight:500;
    color:var(--gray-color-text);
}
.text-size-15-bold {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark-color-text);
}
.text-size-16-bold {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark-color-text);
}
.text-size-18-bold {
    font-size: 18px;
    line-height: 1.3;
    color: var(--dark-color-text);
    font-weight: 700;
} 
.text-size-20-bold {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark-color-text);
}

@media (min-width:1400px) and (max-width:1599px){
   
}
@media (min-width:1200px) and (max-width:1399px){
   
}
@media (min-width:992px) and (max-width:1199px){
  
}
@media (min-width:992px) and (max-width:1599px){

}
@media (min-width:768px) and (max-width:991px){
  
}
@media  (max-width:767px){
   
}

/* Button text */


.btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-text .text {
    color: #3A4356;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    transition: all .3s;
}

.btn-text .icon {
    transform: translateX(0);
    transition: all .3s;
}

.btn-text .icon svg path {
    transition: all .3s;
}

.btn-text:hover .icon svg path {
    fill: #EA9C44;
}

.btn-text:hover .icon {
    transform: translateX(5px);
}

.btn-text:hover .text {
    color:#EA9C44;
}
/* End Button text */
/* Button */
.button-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 54px;
    color: #fff;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    background:#0B5299 ;
    width:100%;
    border:none;
    outline: none;
    box-shadow: none;
    transition: all 0.3s;
}
.button-bg .txt {
    position: relative;
    transition: all 0.3s;
    transform: translateX(0);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}
.button-bg:hover {
    color: #fff;
    background: #006402;
}
.button-bg:focus {
    outline: none;
    box-shadow: none;
    color: #fff;
}
@media (max-width:767px){
    .button-bg {
        height: 44px;
    }
}
/* Button gray */


/* Button icon */
.ct-btn-icon .arrow {
    position: absolute;
    right: 15px;
    transform: translateX(0);
    transition: all .3s;
}
/* Button text */
.button-link-icon {
    display: inline-flex;
    align-items: center;
    gap: 0 8px;
}

.button-link-icon .text {
    color: rgba(28, 43, 51, 1);
    font-size: 15px;
    font-weight: 400;
    transition: all .3s;
}

.button-link-icon .icon {
    transform: translateX(0);
    transition: all .3s;
}

.button-link-icon .icon svg path {
    transition: all .3s;
}

.button-link-icon:hover .icon {
    transform: translateX(4px);
}

.button-link-icon:hover .text {
    color: #0B5299 ;
}

.button-link-icon:hover svg path {
    fill: #0B5299 ;
}

/* Buttonm bg icon */
.btn-bg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    height: 44px;
    background: #d6ebd6;
    padding: 0 12px;
    gap: 0 8px;
    border: 1px solid transparent;
    transition: all .3s;
    cursor:pointer;
}

.btn-bg-icon .text {
    color: #0B5299 ;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: all .3s;
}
.btn-bg-icon .icon img {
    transition: all .4s;
    filter: brightness(1);
}


.btn-bg-icon .icon {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}
/* .btn-bg-icon:hover .icon img {
    filter: brightness(9);
} */
.btn-bg-icon:hover .text {
    color: #0B5299 ;
}
.btn-bg-icon:hover {
    background: #fff;
    
}
.btn-preview .btn-bg-icon:hover {
    border-color: #0B5299 ;
    background: #0B5299 ;
}
.btn-preview .btn-bg-icon:hover .text {
    color:#fff;
}
.btn-preview .btn-bg-icon:hover .icon img {
    filter:brightness(9);
}
.btn-bg-icon:hover .text {
    color: #0B5299 ;
}
.btn-bg-gray {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 12px;
    background: rgba(235, 239, 243, 1);
    border-radius: 6px;
    gap: 0 8px;
    transition: all .3s;
}

.btn-bg-gray .text {
    color: rgba(28, 43, 51, 1);
    font-size: 14px;
    font-weight: 500;
    transition: all .3s;
    line-height: 21px;
}

.btn-bg-gray .icon img {
    transition: all .3s;
}

.btn-bg-gray:hover {
    background: #0B5299 ;
}

.btn-bg-gray:hover .text {
    color: #fff;
}

.btn-bg-gray:hover .icon img {
    filter: brightness(9);
}

.btn-detele {
    display: inline-flex;
    align-items: center;
    gap: 0 6px;
}

.btn-detele .text {
    color: rgba(225, 69, 71, 1);
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    transition: all .3s;
}

.btn-detele .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-detele .icon img {
    transition: all .3s;
}

.btn-text-icon {
    display: inline-flex;
    align-items: center;
    gap: 0 6px;
}

.btn-text-icon .text {
    font-size: 15px;
    font-weight: 400;
    color: rgba(38, 38, 38, 1);
    line-height: 23px;
    transition: all .3s;
}
.btn-text-icon-purple {
    display: inline-flex;
    align-items: center;
    gap: 0 6px;
    cursor: pointer;
}

.btn-text-icon-purple .text {
    color: #0B5299 ;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    position: relative;
    top: -1px;
    transition: all .3s;
}
.btn-text-icon-purple:hover .text {
    text-decoration: underline;
}
.btn-text-icon-purple .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.btn-text-icon-yellow {
    display: inline-flex;
    align-items: center;
    gap: 0 6px;
    cursor: pointer;
}

.btn-text-icon-yellow .text {
    color: rgba(232, 151, 44, 1);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    position: relative;
    top: -1px;
}

.btn-text-icon-yellow .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text-icon .icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
    transform: translateX(0);
}

.btn-text-icon:hover .icon {
    transform: translateX(4px);
}

.btn-text-icon:hover .text {
    color: rgba(133, 141, 154, 1);
}
/* Image hover */
.img-fix {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    transition: all .5s;
    transform-origin: center;
}
.img-fix:hover {
    transform: scale(1.15);
}



/* Label */
.label-category {
    height: 22px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
   
}

.label-category p {
    margin: 0;
    color: rgba(255, 255, 255, 1);
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
}

.label-category.label-red {
    background: rgba(206, 35, 104, 1);
}

.label-category.label-green {
    background: rgba(24, 194, 118, 1);
}

.label-category.label-gray {
    background:  rgba(218, 226, 234, 1);
}
.label-category.label-pirple {
    background: #0B5299 ;
}
.label-category.label-dark {
    background: rgba(61, 67, 117, 1);
}
.label-category.label-yellow {
    background: rgba(232, 151, 44, 1);

}
.label-category.label-gray p {
    color: rgba(28, 43, 51, 1);
}



/* Pagination */
.block-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 10px;
}

.item-navigation {
    border-radius: 8px;
    background: #FFFFFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    margin-bottom: 10px;
    height: 36px;
    font-weight: 500;
    background:transparent;
    color: #1C2B33;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.list-navigtion-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top:24px;
}

.item-navigation.disabled-item {
    border-color: #EDEFF2;
    pointer-events: none;
}
.item-navigation.disabled-item svg path {
    fill: #DFE3E8;
}

.item-navigation+.item-navigation {
    margin-left: 5px;
}

.item-navigation:hover {
    border-color: #006402;
    background: #006402;
    color: #fff;
}

.item-navigation.active {
    border-color: #006402;
    background: #006402;
    color: #fff;
}

.item-navigation:hover svg path {
    fill: #fff;
}

.item-navigation svg path {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.block-navigation .list-navigtion-item {
    margin-bottom: -10px;
}
.block-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 30px;
}
