.custom-plus{
    font-size: 48px; margin: 35% 0 0 25%;
}

@media screen and (min-device-width: 2000px) {
    .custom-plus{
        font-size: 48px; margin: 17% 0 0 25%;
    }
}
.categories-logo{
    max-width: 212px;
    height: 60px;
    padding: 10px 0 10px 16px;
}
.landing-logo{
    width: 200px;
    margin: 0 0 5% 0;
}
.landing-logo:hover{
    cursor: pointer;
}
.categories-logo-small{
    width: 50px;
    padding: 0% 15% 0% 15%;
    margin: -5% 0 -5% 5%;
}

/* Customize the label (the container) */
.container_checkmark {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container_checkmark input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}
/* Create a custom checkbox */
.checkmark_mobile {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #ccc;
}
/* On mouse-over, add a grey background color */
.container_checkmark:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container_checkmark input:checked ~ .checkmark {
    background-color: #23c6c8;
}

/* When the checkbox is checked, add a blue background */
.container_checkmark input:checked ~ .checkmark_mobile {
    background-color: #23c6c8;
}


/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark_mobile:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container_checkmark input:checked ~ .checkmark:after {
    display: block;
}
/* Show the checkmark when checked */
.container_checkmark input:checked ~ .checkmark_mobile:after {
    display: block;
}

/* Style the checkmark/indicator */
.container_checkmark .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* Style the checkmark/indicator */
.container_checkmark .checkmark_mobile:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.circle_point{
    font-size: 18px;
    position:relative;
    top:92px;
    margin-left:12px;
}

.circle_point_percentage{
    font-size: 25px;
    position:relative;
    top:115px;
    margin-left:18px;
}

.cursor-pointer{
    cursor: pointer
}

.custom-scrollbar::-webkit-scrollbar {
    width: 1rem;
}

.custom-scrollbar::-webkit-scrollbar-thumb:vertical {
    background-color: #c4c9cc;
    border-right: 0rem solid #e2e4e6;
    border-radius: 7px;
    border-top-width: 0;
}

.yellow {
    background: #F8AC59;
}

.red {
    background: #ED5565;
}

.green {
    background: #1AB394;
}

.text-green {
    color: green;
}