@font-face {
	font-family: 'Libre Franklin'; 
	src: url(../fonts/LibreFranklin-VariableFont_wght.ttf); 
}

body{
    height: 100vh;
    font-family: 'Libre Franklin'; 
}

body.modal-open{
    overflow: hidden;
}

/*scroll style*/
div::-webkit-scrollbar {
    width: 6px;
}

div::-webkit-scrollbar-thumb {
    background: #969699;
    border-radius: 24px;
}
/*scroll style*/

.main-section {
    width: 100%;
    padding: 40px;
    display: flex;
    min-height: 100%;
}

.column-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}
 
.row-section {
    display: flex;
}

.column-section__row {
    width: 100%;
    height: 100%;
}

.column-section__color-wrapper {
width: 100%;    
}

/* options */

.options {
    height: 100%;
}

.options__header {
    width: 100%;
    background: #F3F3F3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: auto;
}

.options__header::-webkit-scrollbar {
    height: 5px;
}



.options__body {
    height: calc(100% - 58px);
    position: relative;
    
}

.options__pagination {
    width: 252px;
    display: flex;
    justify-content: space-between;
}
/* options */



/* tabs */
.options__tabs {
    display: flex;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    position: relative;
    text-transform: uppercase;
}

.options__tab {
    padding: 20px 30px;
    text-align: center;
    cursor: pointer;
}

.options__tab.active {
    background: #7A0E30;
    color: #FFFFFF;
}
/* tabs */


/*slect-list in subheader*/
.options__save-btn {
    padding: 6px 16px;
    border-radius: 50px;
    background: #FFFFFF;
    color: #636363;
    font-weight: 500;
    font-size: 11px;
    line-height: 18px;
    margin-right: 14px;
}
/*slect-list in subheader*/

.w-60 {
   flex: 0 0 60%;
   max-width: 60%;
}

.w-40 {
    max-width: 40%;
   flex: 0 0 40%;
}

@media (max-width:992px) {
     .options__tab {
        font-size: 11px;
        padding: 20px 18px;
    }
}


@media (max-width:1116px) {
  
}

@media (max-width: 1202px) {
      .main-section{
        padding: 10px;
      }
}

@media (max-width:709px) {
    .options {
    height: auto;
    }
    body {
    width: auto;
    }

    .main-section {
        padding: 0;
        flex-direction: column;
    }

    .options__tabs {
        width: 100%;
        overflow: auto;
    }
    .options__tabs::-webkit-scrollbar {
        display: none;
    }

    .options__save-btn {
        display: none;
    }

    .column-section__row {
        height: auto;
    }

     .w-60 {
        flex: 1 1 auto;
        max-width: 100%;
    }
    .w-40 {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .row-section{
        flex-direction: column;
    }

}
