﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

:root {
    /* ===== Colors ===== */
    --primary-color: #008037;
    --secundary-color: #00A837;
    --panel-color: #FFF;
    --text-color: #000;
    --text-color2: #FFF;
    --black-light-color: #707070;
    --border-color: #e6e5e5;
    --toggle-color: #DDD;
    --box1-color: #51BFFF;
    --box2-color: #FFCF51;
    --box3-color: #FF5151;
    --title-icon-color: #fff;
    /* ====== Transition ====== */
    --tran-05: all 0.5s ease;
    --tran-03: all 0.3s ease;
    --tran-03: all 0.2s ease;
}
/* === Custom Scroll Bar CSS === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--secundary-color);
    }
/* === Custom Scroll Bar CSS === */

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    overflow: hidden;
}

form {
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    width: 100%;
}

.toast {
    position: absolute;
    top: 25px;
    right: 30px;
    border-radius: 12px;
    background: #fff;
    padding: 20px 35px 20px 25px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-left: 6px solid var(--primary-color);
    overflow: hidden;
    transform: translateX(calc(100% + 30px));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}

    .toast.active {
        transform: translateX(0%);
    }

    .toast .toast-content {
        display: flex;
        align-items: center;
    }

.toast-content .check {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
}

.toast-content .message {
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.message .text {
    font-size: 20px;
    font-weight: 400;
    color: #666666;
}

    .message .text.text-1 {
        font-weight: 600;
        color: #333;
    }

.toast .close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.7;
}

    .toast .close:hover {
        opacity: 1;
    }

.toast .progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #ddd;
}

    .toast .progress:before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
        width: 100%;
        background-color: var(--primary-color);
    }

.progress.active:before {
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        right: 100%;
    }
}

.container {
    max-width: 100%;
    width: 25%;
    max-height: 100vh;
    height: 100%;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

    .container .title {
        font-size: 16px;
        font-weight: 500;
        text-align: left;
        position: relative;
    }

        .container .title::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(135deg, #71b7e6, #9b59b6);
        }

.containerMural {
    max-width: 100%;
    width: 50%;
    max-height: 100vh;
    height: 100%;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    overflow: auto;
}

    .containerMural .title {
        font-size: 16px;
        font-weight: 500;
        text-align: left;
        position: relative;
    }

        .containerMural .title::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(135deg, #71b7e6, #9b59b6);
        }

/* === card-box Chart CSS === */
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

.subtitle {
    text-transform: uppercase;
    font-weight: bolder;
}

.cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

    .cards .card {
        width: calc(100% / 5 - 10px);
        background: #fff;
        border-radius: 12px;
        padding: 10px;
        margin: 10px 0px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
        transition: all 0.4s ease;
        height: auto;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

        .cards .card::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: linear-gradient(var(--primary-color),#FFF);
            animation: animate 2s linear infinite;
        }

        .cards .card:after {
            content: '';
            position: absolute;
            inset: 4px;
            background: #FFF;
        }

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.cards .card:hover {
    transform: translateY(-15px);
}

.cards .card .content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.cards .card .details {
    width: 100%;
}

.card .content .img {
    max-height: 240px;
}

    .card .content .img img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        border-radius: 5px;
    }

.card .content .name {
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
    text-wrap: none;
    text-transform: uppercase;
}

.card .content .job {
    font-size: 14px;
    color: #0b316f;
    overflow: hidden;
}

.card .content .number {
    font-size: 14px;
    color: #0b316f;
    overflow: hidden;
}

.card .content .media-icons {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* === card-box Chart CSS === */





form .content .obs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 12px 0;
}

form .obs .input-box {
    margin-bottom: 15px;
    width: 100%;
}


.user-details .input-box input {
    height: 36px;
    width: 100%;
    outline: none;
    font-size: 14px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.user-details .input-box select {
    height: 36px;
    width: 100%;
    outline: none;
    font-size: 14px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.user-details .input-box button {
    height: 36px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    text-transform: uppercase;
    font-family: 'Poppins',sans-serif;
    vertical-align: central;
}

.cobertura-details .input-box input {
    height: 36px;
    width: 100%;
    outline: none;
    font-size: 14px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.cobertura-details .input-box select {
    height: 36px;
    width: 100%;
    outline: none;
    font-size: 14px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.obs textarea {
    height: 260px;
    width: 100%;
    resize: none;
    outline: none;
    font-size: 12px;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

.cobertura-details .input-box2 input {
    height: 36px;
    width: 50%;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    text-transform: uppercase;
    font-family: 'Poppins',sans-serif;
    vertical-align: central;
}

.type-details .input-box button {
    height: 100%;
    width: calc(100%/2 - 15px);
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    text-transform: uppercase;
    font-family: 'Poppins',sans-serif;
    vertical-align: central;
}


.cobertura-details .input-box2 button {
    height: 36px;
    width: 50%;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    text-transform: uppercase;
    font-family: 'Poppins',sans-serif;
    vertical-align: central;
}


.user-details .input-box input:focus,
.user-details .input-box select:focus {
    border-color: var(--primary-color);
}

.cobertura-details .input-box input:focus {
    border-color: var(--primary-color);
}

.obs .input-box textarea:focus {
    border-color: var(--primary-color);
}

form .gender-details .gender-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

form .category {
    display: flex;
    width: 100%;
    margin: 14px 0;
    justify-content: space-between;
}

    form .category label {
        display: flex;
        align-items: center;
        cursor: pointer;
    }

        form .category label .dot {
            height: 18px;
            width: 18px;
            border-radius: 50%;
            margin-right: 10px;
            background: #d9d9d9;
            border: 5px solid transparent;
            transition: all 0.3s ease;
        }

#dot1:checked ~ .category label .one,
#dot2:checked ~ .category label .two,
#dot3:checked ~ .category label .three {
    background: var(--primary-color);
    border-color: #d9d9d9;
}

form input[type="radio"] {
    display: none;
}

form .button {
    height: 45px;
    margin: 10px 0;
}

    form .button input {
        height: 100%;
        width: 100%;
        border-radius: 5px;
        border: none;
        font-size: 18px;
        color: #fff;
        font-weight: bold;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: var(--primary-color);
        text-transform: uppercase;
        font-family: 'Poppins',sans-serif;
        vertical-align: central;
    }

        form .button input:hover {
            transform: scale(0.99);
            left: 0;
        }

    form .button button {
        height: 100%;
        width: 100%;
        border-radius: 5px;
        border: none;
        font-size: 18px;
        color: #fff;
        font-weight: bold;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: var(--primary-color);
        text-transform: uppercase;
        font-family: 'Poppins',sans-serif;
        vertical-align: central;
    }

        form .button button:hover {
            transform: scale(0.99);
            left: 0;
        }

.user-details .input-box button:hover {
    transform: scale(0.99);
    left: 0;
}

.cobertura-details .input-box2 input:hover {
    transform: scale(0.99);
    left: 0;
}

@media(max-width: 584px) {
    .container {
        max-width: 100%;
    }

    form .user-details .input-box {
        margin-bottom: 15px;
        width: 100%;
    }

    form .category {
        width: 100%;
    }

    .content form .user-details {
        max-height: 300px;
        overflow-y: scroll;
    }

    .user-details::-webkit-scrollbar {
        width: 5px;
    }
}

@media(max-width: 459px) {
    .container .content .category {
        flex-direction: column;
    }
}

.table {
    border-spacing: 0 15px;
    border-collapse: separate;
}

div.ex3 {
    width: 100%;
    height: 35vh;
    overflow: auto;
}


.table thead tr th,
.table thead tr td,
.table tbody tr th,
.table tbody tr td {
    vertical-align: middle;
    border: none;
}

    .table thead tr th:nth-last-child(1),
    .table thead tr td:nth-last-child(1),
    .table tbody tr th:nth-last-child(1),
    .table tbody tr td:nth-last-child(1) {
        text-align: center;
    }

.table tbody tr {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

    .table tbody tr td:nth-child(1) {
        border-radius: 5px 0 0 5px;
    }

    .table tbody tr td:nth-last-child(1) {
        border-radius: 0 5px 5px 0;
    }

.btn-primary {
    text-align: center;
    width: 35px;
    margin: 0 4px;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    border-radius: 10px;
    border: 2px solid transparent;
    background: var(--primary-color);
    transition: all 0.3s ease;
    width: calc(100%/2 - 10px);
}

    .btn-primary:hover {
        background-color: #FF4773;
        border-color: #FF4773;
    }

.btn-secondary {
    text-align: center;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    border-radius: 10px;
    border: 2px solid transparent;
    background: transparent;
    transition: all 0.3s ease;
}

.table .input-box input {
    height: 36px;
    width: 100%;
    outline: none;
    font-size: 14px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
}

    .table .input-box input:focus {
        border-color: #2AC100;
    }

.x-btn-tl, .x-btn-tr, .x-btn-tc, .x-btn-ml, .x-btn-mr, .x-btn-mc, .x-btn-bl, .x-btn-br, .x-btn-bc {
    background: transparent;
}

.x-btn button {
    font-family: Poppins-Bold;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 30px;
}

    .x-btn button:hover {
        cursor: pointer;
    }


/* === Start Loading CSS === */
.popup-outer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

.popup-outer {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 2;
}

.popup-box {
    position: relative;
    padding: 30px;
    width: 50%;
    background: #fff;
    border-radius: 12px;
    max-height: 50%;
    overflow: auto;
}

    .popup-box .close {
        position: absolute;
        top: 8px;
        right: 8px;
        font-size: 24px;
        color: #b4b4b4;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .popup-box .close:hover {
            color: #333;
        }

    .popup-box .profile-text {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .popup-box img {
        object-fit: cover;
    }

.profile-text .text {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

    .profile-text .text .name {
        font-size: 18px;
        font-weight: bold;
    }

    .profile-text .text .profession {
        font-size: 16px;
        font-weight: 600;
    }

.popup-box textarea {
    min-height: 140px;
    width: 100%;
    outline: none;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 6px;
    resize: none;
    font-size: 14px;
    font-weight: 400;
    background: #f3f3f3;
}

.popup-box .button {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

    .popup-box .button button {
        outline: none;
        border: none;
        padding: 6px 12px;
        border-radius: 6px;
        background: var(--primary-color);
        margin-left: 8px;
        color: #fff;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

.button button.cancel {
    background: #f082ac;
}

    .button button.cancel:hover {
        background: #ec5f95;
    }

.button button.send:hover {
    background: #275df1;
}

.loader {
    animation: spin 1s infinite linear;
    border: solid 2vmin transparent;
    border-radius: 50%;
    border-right-color: #09f;
    border-top-color: #09f;
    box-sizing: border-box;
    height: 20vmin;
    left: calc(50% - 10vmin);
    position: fixed;
    top: calc(50% - 10vmin);
    width: 20vmin;
    z-index: 1;
}

    .loader:before {
        animation: spin 2s infinite linear;
        border: solid 2vmin transparent;
        border-radius: 50%;
        border-right-color: #3cf;
        border-top-color: #3cf;
        box-sizing: border-box;
        content: "";
        height: 16vmin;
        left: 0;
        position: absolute;
        top: 0;
        width: 16vmin;
    }

    .loader:after {
        animation: spin 3s infinite linear;
        border: solid 2vmin transparent;
        border-radius: 50%;
        border-right-color: #6ff;
        border-top-color: #6ff;
        box-sizing: border-box;
        content: "";
        height: 12vmin;
        left: 2vmin;
        position: absolute;
        top: 2vmin;
        width: 12vmin;
    }

}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#UpdateProgress1 {
    width: 100%;
    height: 100%;
    position: absolute;
}
/* === End Loading CSS === */
form .popup-outer2 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}

form.show .popup-outer2 {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}
/* === Start Floating Button CSS === */
.my-float {
    font-size: 32px;
}


@-webkit-keyframes come-in {
    0% {
        -webkit-transform: translatey(100px);
        transform: translatey(100px);
        opacity: 0;
    }

    30% {
        -webkit-transform: translateX(-50px) scale(0.4);
        transform: translateX(-50px) scale(0.4);
    }

    70% {
        -webkit-transform: translateX(0px) scale(1.2);
        transform: translateX(0px) scale(1.2);
    }

    100% {
        -webkit-transform: translatey(0px) scale(1);
        transform: translatey(0px) scale(1);
        opacity: 1;
    }
}

@keyframes come-in {
    0% {
        -webkit-transform: translatey(100px);
        transform: translatey(100px);
        opacity: 0;
    }

    30% {
        -webkit-transform: translateX(-50px) scale(0.4);
        transform: translateX(-50px) scale(0.4);
    }

    70% {
        -webkit-transform: translateX(0px) scale(1.2);
        transform: translateX(0px) scale(1.2);
    }

    100% {
        -webkit-transform: translatey(0px) scale(1);
        transform: translatey(0px) scale(1);
        opacity: 1;
    }
}

.floating-container {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 0;
    right: 0;
    margin: 10px;
}

    .floating-container:hover {
        height: 260px;
    }

        .floating-container:hover .floating-button {
            box-shadow: 0 10px 25px rgba(44, 179, 240, 0.6);
            -webkit-transform: translatey(5px);
            transform: translatey(5px);
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
        }



        .floating-container:hover .element-container .float-element:nth-child(1) {
            -webkit-animation: come-in 0.4s forwards 0.2s;
            animation: come-in 0.4s forwards 0.2s;
        }

        .floating-container:hover .element-container .float-element:nth-child(2) {
            -webkit-animation: come-in 0.4s forwards 0.4s;
            animation: come-in 0.4s forwards 0.4s;
        }

        .floating-container:hover .element-container .float-element:nth-child(3) {
            -webkit-animation: come-in 0.4s forwards 0.6s;
            animation: come-in 0.4s forwards 0.6s;
        }

    .floating-container .floating-button {
        position: absolute;
        width: 65px;
        height: 65px;
        background: #2cb3f0;
        bottom: 0;
        border-radius: 50%;
        left: 0;
        right: 0;
        margin: auto;
        color: white;
        line-height: 65px;
        text-align: center;
        font-size: 36px;
        z-index: 100;
        box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

.float-element .tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 0px;
    right: 110%;
    font-size: 12px;
}

.float-element:hover .tooltiptext {
    visibility: visible;
}

.float-element .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}


.floating-container .float-element {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 15px auto;
    color: white;
    font-weight: 500;
    text-align: center;
    line-height: 50px;
    z-index: 0;
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    font-size: 24px;
}

    .floating-container .float-element .material-icons {
        vertical-align: middle;
        font-size: 16px;
    }

    .floating-container .float-element:nth-child(1) {
        background: #42A5F5;
        box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
    }

    .floating-container .float-element:nth-child(2) {
        background: #4CAF50;
        box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
    }

    .floating-container .float-element:nth-child(3) {
        background: #CD6155;
        box-shadow: 0 20px 20px -10px rgba(205, 97, 85, 0.5);
    }


/* === End Floating Button CSS === */

/* === Start Cards CSS === */
.boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

    .boxes .doublebox {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 12px;
        width: calc(100%/2 - 15px);
        padding: 15px 20px;
        background-color: var(--box1-color);
        transition: var(--tran-05);
    }

    .boxes .box {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 12px;
        width: 100%;
        padding: 15px 20px;
        background-color: var(--primary-color);
        transition: var(--tran-05);
    }

.slideshow-container .boxes .box:hover {
    transform: scale(0.9);
}

.boxes .doublebox.box2:hover,
.boxes .doublebox.box3:hover {
    transform: scale(0.9);
}

.col-xs-12.col-sm-6.col-md-3 {
    transition: var(--tran-05);
}

    .col-xs-12.col-sm-6.col-md-3:hover {
        transform: scale(0.9);
    }


.boxes .box .content {
    display: flex;
    flex-direction: initial;
    justify-content: space-between;
    padding: 0px;
}

.boxes .box i {
    font-size: 35px;
    color: var(--text-color);
}

.boxes .box .text {
    font-size: 16px;
    font-weight: bolder;
    text-transform: uppercase;
    color: var(--text-color2);
}

.boxes .doublebox .text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

.boxes .doublebox .number {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-color);
}

.boxes .box.box2,
.boxes .doublebox.box2 {
    background-color: var(--box3-color);
}

.boxes .box.box3,
.boxes .doublebox.box3 {
    background-color: var(--box2-color);
}

.boxes .box .number {
    font-size: 40px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
}

.boxes .box.box2 {
    background-color: var(--box2-color);
}

.boxes .box.box3 {
    background-color: var(--box3-color);
}
/* === End Cards CSS === */

/* === Start Slide CSS === */

.mySlides {
    display: none;
}

.mySlidesA {
    display: none;
}

.mySlidesB {
    transition: var(--tran-05);
}

    .mySlidesB:hover {
        transform: scale(0.9);
    }

/* Slideshow container */
.slideshow-container {
    width: 100%;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    width: auto;
    color: black;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */



@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next, .text {
        font-size: 11px
    }
}
/* === End Slide CSS === */
.title {
    display: flex;
    align-items: center;
    margin: 5px 0 5px 0;
}

    .title i {
        position: relative;
        height: 35px;
        width: 35px;
        background-color: var(--primary-color);
        border-radius: 6px;
        color: var(--title-icon-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .title .text {
        font-size: 24px;
        font-weight: 500;
        color: var(--text-color);
        margin-left: 10px;
    }

/* === Start Chart CSS === */
@media (min-width: 768px) {
    .col-md-3 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.row {
    margin-right: 0px;
    margin-left: 0px;
}

.b-skills h5 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-color);
}

.fade:not(.show) {
    opacity: 1;
}
/* === End Chart CSS === */
