/* Minification failed. Returning unminified contents.
(897,31): run-time error CSS1046: Expect comma, found '247'
(897,38): run-time error CSS1046: Expect comma, found ')'
 */


.container-amandatheme {
    z-index: -9999;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
}

    .container-amandatheme img {
        height: 100%;
        width: 100%;
    }

.book-content {
    position: absolute;
    /* display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;*/
}

#imgBgBook {
    position: absolute;
    width: 100%;
    height: 100%;
}

#flipbook {
    transition: transform 0.5s ease-in-out;
    position: absolute;
    width: calc(100% - 60px);
    height: calc(100% - 60px)
}

    #flipbook .page {
        width: 400px;
        height: 300px;
        width: 100%;
        height: 100%;
        background-color: white;
        line-height: 300px;
        font-size: 20px;
        text-align: center;
    }

        #flipbook .page img {
            max-width: 100%;
            height: auto;
        }

    #flipbook .page-wrapper {
        -webkit-perspective: 2000px;
        -moz-perspective: 2000px;
        -ms-perspective: 2000px;
        -o-perspective: 2000px;
        perspective: 2000px;
    }

    #flipbook .hard {
        background: #ccc !important;
        color: #333;
        -webkit-box-shadow: inset 0 0 5px #666;
        -moz-box-shadow: inset 0 0 5px #666;
        -o-box-shadow: inset 0 0 5px #666;
        -ms-box-shadow: inset 0 0 5px #666;
        box-shadow: inset 0 0 5px #666;
        font-weight: bold;
    }

    #flipbook .odd {
        background: -webkit-gradient(linear, right top, left top, color-stop(0.95, #FFF), color-stop(1, #DADADA));
        background-image: -webkit-linear-gradient(right, #FFF 95%, #C4C4C4 100%);
        background-image: -moz-linear-gradient(right, #FFF 95%, #C4C4C4 100%);
        background-image: -ms-linear-gradient(right, #FFF 95%, #C4C4C4 100%);
        background-image: -o-linear-gradient(right, #FFF 95%, #C4C4C4 100%);
        background-image: linear-gradient(right, #FFF 95%, #C4C4C4 100%);
        -webkit-box-shadow: inset 0 0 5px #666;
        -moz-box-shadow: inset 0 0 5px #666;
        -o-box-shadow: inset 0 0 5px #666;
        -ms-box-shadow: inset 0 0 5px #666;
        box-shadow: inset 0 0 5px #666;
    }

    #flipbook .even {
        background: -webkit-gradient(linear, left top, right top, color-stop(0.95, #fff), color-stop(1, #dadada));
        background-image: -webkit-linear-gradient(left, #fff 95%, #dadada 100%);
        background-image: -moz-linear-gradient(left, #fff 95%, #dadada 100%);
        background-image: -ms-linear-gradient(left, #fff 95%, #dadada 100%);
        background-image: -o-linear-gradient(left, #fff 95%, #dadada 100%);
        background-image: linear-gradient(left, #fff 95%, #dadada 100%);
        -webkit-box-shadow: inset 0 0 5px #666;
        -moz-box-shadow: inset 0 0 5px #666;
        -o-box-shadow: inset 0 0 5px #666;
        -ms-box-shadow: inset 0 0 5px #666;
        box-shadow: inset 0 0 5px #666;
    }


.page-amanda {
    height: 100%;
    width: 100%;
    position: relative;
}

.img-page {
    height: 100%;
    width: 100%;
    position: relative;
    object-fit: cover;
    image-rendering: optimizeQuality;
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

.activity-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 10%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    flex-wrap: nowrap;
    align-items: center;
}

.img-mouse-page {
    cursor: pointer;
    width: 44%;
    animation: shake 0.4s;
    animation-iteration-count: infinite;
    margin-bottom: 16%;
    z-index: 100;
}

@keyframes shake {
    0% {
        transform: rotate(-15deg);
    }

    25% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-15deg);
    }
}

.pre-next {
    width: 40px;
    position: absolute;
    opacity: 0.6;
    cursor: pointer;
    bottom:15%;
}

.btn-tn-r-wb {
    display: none;
    cursor: pointer;
    position: absolute;
    width: 40px;
    left: calc(50% - 20px);
    z-index: 100;
    top: 50%;
    animation: blink 1s;
    animation-iteration-count: infinite;
}

@keyframes blink {
    0% {
        width: 40px;
    }

    50% {
        width: 46px;
        transform: translate(-3px, -3px);
    }

    100% {
        width: 40px;
    }
}

#review {
    width: 44px;
    left: calc(50% - 22px);
    top: 50%;
    animation: blink1 1s;
    animation-iteration-count: infinite;
}

@keyframes blink1 {
    0% {
        width: 44px;
    }

    50% {
        width: 50px;
        transform: translate(-3px, -3px);
    }

    100% {
        width: 44px;
    }
}

.menu-theme {
    display: none;
    background-color: #fbf7c2;
    font-size: 14px;
    border-radius: 20px;
    padding-bottom: 10px;
    z-index: 100;
}

.menu-show {
    display: block;
}


/*top menu*/
.class-top-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, #ffffff, #d9d5d5);
    width: 100%;
    height: 60px;
    box-shadow: 0px 0px 2px 0px #101010;
    border-bottom: 1px solid #666666;
    transition: top 0.5s ease 0s;
    z-index: 100;
}

#btnMenu {
    position: absolute;
    top: 100%;
    left: 13%;
    cursor: pointer;
    width: 100px;
}

.class-img-menu-top {
    height: 60px;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.brick {
    height: 40px;
    background-color: #cccccc;
    width: 2px;
}

.class-img-menu-top span {
    font-size: 13px;
    font-weight: bold;
    color: #101010;
}

.img-menu {
    height: 32px;
}

.class-menu-top {
    top: -60px !important;
}
/* Thumbnail and Bookmark*/
.bg-thumbnail, .bg-bookmark {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: black;
    z-index: 10000;
    top: 0%;
    /* overflow:auto; */
}

.thumbnail-header, .bookmark-header {
    width: 96%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 62px;
    background-repeat: round;
}

.thumbnail-close, .bookmark-close {
    cursor: pointer;
    margin-right: 30px;
    margin-bottom: 16px;
    width: 28px;
}

.img-thumbnail-active {
    border: 2px solid red !important;
    opacity: 1 !important;
}

.img-bookmark-active {
    border: 2px solid red !important;
    opacity: 1 !important;
}

.grid-thumbnail-container, .grid-bookmark-container {
    max-height: calc(100% - 62px);
    overflow: auto;
    margin-left: 30px;
    margin-right: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 10px;
    width: 96%;
}

.grid-thumbnail {
    position: relative;
    margin-bottom: 3%;
    flex: 15%;
    max-width: 15%;
    margin-left: 2%;
    margin-right: 2%;
}

.grid-bookmark {
    position: relative;
    margin-top: 1%;
    margin-bottom: 2%;
    margin-right: 2%;
    margin-left: 2%;
    width: 15%;
}

.thumbnail-info, .bookmark-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background-color: black;
    opacity: 0.5;
    text-align: center;
}

    .thumbnail-info p, .bookmark-info p {
        color: white;
    }

.bookmark-remove {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%,-25%);
    width: 18%;
    cursor: pointer;
}

.grid-page {
    opacity: 0.7;
    cursor: pointer;
    width: 100%;
    height: auto;
    background: white;
}

/*scroll*/
.grid-thumbnail-container::-webkit-scrollbar, .grid-bookmark-container::-webkit-scrollbar {
    width: 10px;
}

.grid-thumbnail-container::-webkit-scrollbar-track, .grid-bookmark-container::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0,0,0,0.5);
    border: 1px solid #ccc;
}

.grid-thumbnail-container::-webkit-scrollbar-thumb, .grid-bookmark-container::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(left, #fff, #e4e4e4);
    border: 1px solid #aaa;
}

    .grid-thumbnail-container::-webkit-scrollbar-thumb:hover, .grid-bookmark-container::-webkit-scrollbar-thumb:hover {
        background: #fff;
    }

    .grid-thumbnail-container::-webkit-scrollbar-thumb:active, .grid-bookmark-container::-webkit-scrollbar-thumb:active {
        background: #fff;
    }

#idContentListTheme {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content-hide {
    display: none;
}

.list-content {
    position: absolute;
    top: 57%;
    left: 50%;
    width: 100%;
    height: 35%;
    transform: translateX(-50%);
    list-style-type: none;
    padding-inline-start: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.content-item {
    width: 33%;
    display: inline-block;
    font-weight: 550;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

    .content-item:hover {
        text-decoration: underline;
    }

.ql-container {
    min-width: 50px;
}

.activity-container2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
}

    .activity-container2.d-none {
        display: none;
    }

    .activity-container2 .activity-item {
        cursor: pointer;
    }

.img-bookmark-active {
    border: 2px solid red !important;
    opacity: 1 !important;
}
/*css for memo*/
.ql-editor {
    max-width: 150px;
}

.content-container-a {
    max-width: none
}

/*Set padding to keep content from hitting the edges 
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/
/*customize template*/
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'NunitoRegular';
    src: url('../fonts/Nunito-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'NunitoBold';
    src: url('../fonts/Nunito-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'NunitoBlack';
    src: url('../fonts/Nunito-Black.ttf') format('truetype');
}

@font-face {
    font-family: 'NunitoSemiBold';
    src: url('../fonts/Nunito-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'NunitoMedium';
    src: url('../fonts/Nunito-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'MontserratBold';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'MontserratMedium';
    src: url('../fonts/Montserrat-Medium.otf') format('truetype');
}
@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../fonts/Montserrat-Medium.otf') format('truetype');
}
@font-face {
    font-family: 'MontserratLI';
    src: url('../fonts/Montserrat-LightItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'MontserratR';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'MontserratSemiBold';
    src: url('../fonts/Montserrat-SemiBold.otf') format('truetype');
}

@font-face {
    font-family: 'BalooDaRegular';
    src: url('../fonts/BALOODA-REGULAR.TTF') format('truetype');
}

@font-face {
    font-family: 'HirukoProRegular';
    src: url('../fonts/HirukoPro-Regular.otf') format('truetype');
}

@font-face {
    font-family: 'MONTSERRAT-BOLDITALIC';
    src: url('../fonts/MONTSERRAT-BOLDITALIC.TTF') format('truetype');
}
@font-face {
    font-family: 'Montserrat-Light';
    src: url('../fonts/Montserrat-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-Italic';
    src: url('../fonts/Montserrat-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat-BlackItalic';
    src: url('../fonts/Montserrat-BlackItalic.ttf') format('truetype');
}
@font-face {
    font-family: 'Montserrat-MediumItalic';
    src: url('../fonts/Montserrat-MediumItalic.ttf') format('truetype');
}

html,
body {
    font-family: 'Montserrat';
}
/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error,
select.input-validation-error,
textarea.input-validation-error,
select.select2-hidden-accessible.input-validation-error + span.select2 > span > span {
    border: 1px solid red !important;
}

.input-group .input-validation-error {
    border-right: 1px solid #d2d6de !important;
}

label.input-group-addon {
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.input-group .input-validation-error + label.input-group-addon {
    border-top: 1px solid red !important;
    border-right: 1px solid red !important;
    border-bottom: 1px solid red !important;
}

select.select2-hidden-accessible + span.select2 > span > span {
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}

table > thead > tr {
    background-color: #dddde4;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    height: 27px;
    font-size: 12px;
    padding: 0 0 0 10px;
}

.input-group-addon {
    padding: 0 10px;
}

label {
    font-size: 12px;
}

.cursor {
    cursor: pointer;
}

.noresult {
    text-align: center;
    font-weight: bold;
    color: #dd4b39;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        padding-top: 3px;
        margin-bottom: 0;
        text-align: left;
        padding-right: 0;
    }

    .modal-md {
        width: 450px !important;
    }

    .fixed .content-wrapper {
        padding-top: 60px !important;
    }
}

@media (min-width: 991px) {
    .fixed .content-wrapper {
        padding-top: 30px !important;
    }
}

.sidebar-open .main-sidebar .slimScrollDiv,
.sidebar-open .main-sidebar section.sidebar {
    overflow: hidden !important;
}

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
    padding-top: 3px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 20px;
}

input.input-table {
    width: 100%;
    background-color: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    transition: border-color ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s;
}

    input.input-table:focus:not(:read-only) {
        border: 1px solid #3c8dbc;
        box-shadow: none;
        outline: 0;
        transition: border-color ease-in-out .15s;
        -webkit-transition: border-color ease-in-out .15s;
    }

#ui-datepicker-div {
    z-index: 1052 !important;
}

.red {
    color: red;
}

.green {
    color: green;
}

.blue {
    color: blue;
}

#modal-alert {
    z-index: 9999999;
    padding: 0;
}

.colorpicker-element .input-group-addon i {
    width: 13px !important;
    height: 14px !important;
}

.box-header .box-title {
    font-weight: bold;
    color: #f39c12;
    font-size: 16px !important;
}

.skin-blue .sidebar a {
    color: #fff;
}

body.sidebar-collapse .slimScrollDiv, body.sidebar-collapse section.sidebar {
    overflow: visible !important;
}

.input-disabled {
    pointer-events: none;
    background-color: #eee;
}

td:first-child div.ic {
    float: left;
    color: #F39C12;
}

li.treeview > ul.treeview-menu {
    top: 42px !important;
}
    /*li.treeview > ul.treeview-menu > li a{
    color: #777!important;
}*/
    li.treeview > ul.treeview-menu > li a:hover {
        color: #000 !important;
    }

.table-sorter > thead > tr > th {
    position: relative;
}

    .table-sorter > thead > tr > th > a {
        color: #333 !important;
        display: block;
        width: 100%;
    }

.table-sorter .sorter {
    width: 9px;
    position: absolute;
    font-size: 9px;
    color: gray;
    bottom: 2px;
    right: 2px;
}

    .table-sorter .sorter .glyphicon.active {
        color: #fff;
    }

.btn-pink {
    background-color: #dd39b2;
    border-color: #bf10a2 !important;
    color: #fff;
}

.btn-purple {
    background-color: #7839dd;
    border-color: #563cbc !important;
    color: #fff;
}

.btn-green-d {
    background-color: #0d834d;
    border-color: #095e37 !important;
    color: #fff;
}

.rate-dollar > .dropdown-toggle > span {
    font-size: 11pt;
}

.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu > li:hover > .treeview-menu {
    display: block !important;
    position: absolute;
    min-width: 180px;
    left: 100%;
    top: 0 !important;
    background: #f4f4f5;
    padding-left: 0 !important;
}

.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu > li:hover .pull-right {
    transform: rotate(180deg);
}

.sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu > li {
    position: relative;
}

.h-full-screen {
    height: calc(100vh - 28px);
}

/*css for alert modal*/

#modal-alert .modal-content {
    border-radius: 8px;
}

#modal-alert .modal-header {
    display: flex;
    justify-content: center;
}

    #modal-alert .modal-header .close {
        display: none;
    }

#modal-alert .modal-title {
    margin: 0;
    line-height: 1.42857143;
    color: #333;
    font-weight: 600;
}

#modal-alert .modal-body {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(237 247 255);
    text-align: center;
}

#modal-alert .modal-footer {
    display: flex;
    justify-content: center;
}

#modal-alert .btn-primary {
    background-color: #2A96D1;
    border-color: #2A96D1;
    border-radius: 3px;
    padding: 5px 10px;
    margin-right: 10px;
}

#modal-alert .btn-close {
    display: block;
    background-color: red;
    border-radius: 3px;
    color: white;
    padding: 5px 10px;
}

.trigger-activity-btn {
    cursor: pointer;
    height: 20%;
    width: auto;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 101;
}

.trigger-content-btn {
    cursor: pointer;
    height: 17%;
    width: auto;
    position: absolute;
    left: 69px;
    top: 15%;
    z-index: 101;
}
#flipbook {
    height: 100%;
    transition: margin-left 0.25s ease-out;
    width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    #flipbook .page {
        height: 100%;
        width: 100%;
        background-color: white;
    }

        #flipbook .page img {
            max-width: 100%;
            height: 100%;
        }
/*css memo for ebook*/
.ql-editor {
    max-width: 150px;
}

.content-container-a {
    max-width: none
}

.img_thumbnail {
    position: absolute;
    bottom: 5vh;
    left: 2vw;
    padding: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
}

.img_thumbnail img {
    height: 25px;
    width: auto;
}

.bg-thumbnail {
    background-color: #065477;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid-thumbnail-container {
    justify-content: center;
    margin-top: 5vh;
    max-height: calc(100% - 62px - 5vh);
}

.grid-thumbnail {
    position: relative;
    margin: 1%;
    flex: 15%;
    max-width: 15%;
    padding: 1% 2% 0 2%;
}

.grid-thumbnail.grid-thumbnail-active {
    background: rgba(0,0,0,0.15);
    border-radius: 6px;
}

.grid-thumbnail .grid-page {
    opacity: 1;
}

.thumbnail-info {
    position: relative;
    width: 100%;
    height: auto;
    background-color: transparent;
    opacity: 1;
    text-align: center;
    margin: 10% 0;
}

.thumbnail-info p {
    margin: 0!important;
}

.thumbnail-header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 13vh;
}

.th-header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    width: 100%;
    /*height: 100%;*/
    position: relative;
    flex: 1;
}

.th-header-content .thumbnail-header-txt {
    color: #09ADEF;
    font-size: calc(13vh *0.5);
    font-family: MontserratSemiBold;
}

.th-header-content .thumbnail-close {
    position: absolute;
    margin: 0;
    left: 2%;
    width: calc(13vh *0.5);
    height: calc(13vh *0.5);
    border: 3px solid #09ADEF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.th-header-content .thumbnail-close img {
    width: auto;
    height: 60%;
    object-fit: contain;
}

.thumbnail-header .cainumheader {
    display: inline-flex;
    overflow:hidden;
    flex-wrap:nowrap;
    /*margin-top: -0.1%;*/
}

.thumbnail-header .cainumheader img{
    width: 2vw;
    height: calc(2vw/2.67);
    object-fit: cover;
    transform: rotate(180deg);
}

/*scroll*/
.grid-thumbnail-container::-webkit-scrollbar, .grid-bookmark-container::-webkit-scrollbar {
    width: 5px;
}

.grid-thumbnail-container::-webkit-scrollbar-track, .grid-bookmark-container::-webkit-scrollbar-track {
    border-radius: 5px;
    background: rgba(0,0,0,0);
    border: none;
}

.grid-thumbnail-container::-webkit-scrollbar-thumb, .grid-bookmark-container::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(0,0,0,0.2);
    border: none;
}
.grid-thumbnail-container::-webkit-scrollbar-thumb:hover, .grid-bookmark-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.2);
}   

.grid-thumbnail-container::-webkit-scrollbar-thumb:active, .grid-bookmark-container::-webkit-scrollbar-thumb:active {
    background: rgba(0,0,0,0.2);
}

.img_inapp {
    position: absolute;
    top: 2vh;
    left: 2vw;
    /*width: 10vw;*/
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 2px 5px;
    text-align: center;
    background-color: #fbe225;
    color: #606060;
    font-size: 15px;
    font-family: MontserratMedium;
}

/*html body{
    background: pink;
}*/
