:root {
    --primary-color: #EE3524; /* red */
    --primary-color-lighter: #F15D50; /* red lighter*/
    --primary-color-darker: #180504; /*#47100b;*/ /* red darker */
    --backgrey-color: #EEEEEE; /* grey background color */
    --color-white: #FFFFFF; /* white color */
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-color: var(--backgrey-color);
}


/* Error 404 page
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700');
@import url('https://fonts.googleapis.com/css?family=Catamaran:400,800');

.error-container {
    text-align: center;
    font-size: 106px;
    font-family: 'Catamaran', sans-serif;
    font-weight: 800;
    margin: 70px 15px;
}

    .error-container > span {
        display: inline-block;
        position: relative;
    }

        .error-container > span.four {
            width: 136px;
            height: 43px;
            border-radius: 999px;
            background: linear-gradient(140deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.07) 43%, transparent 44%, transparent 100%), linear-gradient(105deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.06) 41%, rgba(0, 0, 0, 0.07) 76%, transparent 77%, transparent 100%), linear-gradient(to right, #d89ca4, #e27b7e);
        }

            .error-container > span.four:before,
            .error-container > span.four:after {
                content: '';
                display: block;
                position: absolute;
                border-radius: 999px;
            }

            .error-container > span.four:before {
                width: 43px;
                height: 156px;
                left: 60px;
                bottom: -43px;
                background: linear-gradient(128deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.07) 40%, transparent 41%, transparent 100%), linear-gradient(116deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.07) 50%, transparent 51%, transparent 100%), linear-gradient(to top, #99749D, #B895AB, #CC9AA6, #D7969E, #E0787F);
            }

            .error-container > span.four:after {
                width: 137px;
                height: 43px;
                transform: rotate(-49.5deg);
                left: -18px;
                bottom: 36px;
                background: linear-gradient(to right, #99749D, #B895AB, #CC9AA6, #D7969E, #E0787F);
            }

        .error-container > span.zero {
            vertical-align: text-top;
            width: 156px;
            height: 156px;
            border-radius: 999px;
            background: linear-gradient(-45deg, transparent 0%, rgba(0, 0, 0, 0.06) 50%, transparent 51%, transparent 100%), linear-gradient(to top right, #99749D, #99749D, #B895AB, #CC9AA6, #D7969E, #ED8687, #ED8687);
            overflow: hidden;
            animation: bgshadow 5s infinite;
        }

            .error-container > span.zero:before {
                content: '';
                display: block;
                position: absolute;
                transform: rotate(45deg);
                width: 90px;
                height: 90px;
                background-color: transparent;
                left: 0px;
                bottom: 0px;
                background: linear-gradient(95deg, transparent 0%, transparent 8%, rgba(0, 0, 0, 0.07) 9%, transparent 50%, transparent 100%), linear-gradient(85deg, transparent 0%, transparent 19%, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.07) 91%, transparent 92%, transparent 100%);
            }

            .error-container > span.zero:after {
                content: '';
                display: block;
                position: absolute;
                border-radius: 999px;
                width: 70px;
                height: 70px;
                left: 43px;
                bottom: 43px;
                background: #FDFAF5;
                box-shadow: -2px 2px 2px 0px rgba(0, 0, 0, 0.1);
            }

.screen-reader-text {
    position: absolute;
    top: -9999em;
    left: -9999em;
}

@keyframes bgshadow {
    0% {
        box-shadow: inset -160px 160px 0px 5px rgba(0, 0, 0, 0.4);
    }

    45% {
        box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    }

    55% {
        box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    }

    100% {
        box-shadow: inset 160px -160px 0px 5px rgba(0, 0, 0, 0.4);
    }
}

/* demo stuff */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container-error404 {
    font-family: 'Montserrat', Helvetica, sans-serif;
    color: #bbb;
}

.h1-error404 {
    text-align: center;
    margin: 30px 15px;
}

.zoom-area {
    max-width: 490px;
    margin: 30px auto 30px;
    font-size: 19px;
    text-align: center;
}

.link-container {
    text-align: center;
}

a.more-link {
    text-transform: uppercase;
    font-size: 13px;
    background-color: #de7e85;
    padding: 10px 15px;
    border-radius: 0;
    color: #fff;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    line-height: 1.5;
    text-decoration: none;
    margin-top: 50px;
    letter-spacing: 1px;
}

/* Forbidden page
-------------------------------------------------- */
.whistle {
    width: 20%;
    fill: #f95959;
    margin: 100px 40%;
    text-align: left;
    transform: translate(-50%, -50%);
    transform: rotate(0);
    transform-origin: 80% 30%;
    animation: wiggle .2s infinite;
}

@keyframes wiggle {
    0% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(3deg);
    }
}

.h1-forbidden {
    margin-top: -100px;
    margin-bottom: 20px;
    color: #facf5a;
    text-align: center;
    font-family: 'Raleway';
    font-size: 90px;
    font-weight: 800;
}

.h2-forbidden {
    color: #455d7a;
    text-align: center;
    font-family: 'Raleway';
    font-size: 30px;
    text-transform: uppercase;
}

/* Home Page */
.home-full-width {
    position: relative;
    width: 100vw;
    height: 70vh;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 0;
}

/*.carousel-item img {
    height: 100%;
    object-fit: cover;
}*/

.carousel-inner {
 /*   position:relative;*/
    width: 100vw;
    height: 70vh;
    overflow: hidden;
 
}

.carousel-img {
    height: 70vh;
    width: 100vw;   
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}

/*.carousel-caption-bottom {*/
   /* position: absolute;
    bottom: 0;
    width: 100%;*/
    /*background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));*/ /* Degradê do preto ao transparente */
    /*color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}*/
   
 

.carousel-caption-botton-text {
    margin-bottom: 5%;
}

    .carousel-caption-botton-text h1 {
        margin-bottom: 1%;
        font-family: "Archivo Black", sans-serif;
    }
    .carousel-caption-botton-text p {
        margin-bottom: 5%;
        font-family: "Bebas Neue", serif;
        letter-spacing: 2px;
        font-weight: 400;
    }

.carousel-caption-btn,
.carousel-caption-btn:link,
.carousel-caption-btn:visited {
    background-color: var(--primary-color);
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 50px;
    color: var(--color-white);
   /* border-radius: 10rem;*/
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
}

.join-now-btn,
.join-now-btn:link,
.join-now-btn:visited {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    color: var(--color-white);
    /*border-radius: 10rem;*/
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
}

.check-red-btn,
.check-red-btn:link,
.check-red-btn:visited {
    background-color: var(--primary-color);
    display: inline-block;
    text-decoration: none;
    padding: 5px 10px;
    color: var(--color-white);   
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
}

.carousel-caption-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba($color-black, 0.2);
    color: var(--color-white);
}


.join-now-btn:hover {  
   background-color: var(--primary-color);
    color: var(--color-white);
}

.check-red-btn:hover {   
    background-color: var(--primary-color-lighter);    
    color: var(--color-white);
}

.carousel-caption-btn::after
{
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

    .carousel-caption-btn:active,
    .carousel-caption-btn:focus {
        transform: translateY(-1px);
        box-shadow: 0 0.5rem 1rem rgba($color-black, 0.2);
    }

.card-plan-item {
    background-color: #f7f7f7;
}
.card-name{
    color: var(--primary-color-darker);
}

.number-price {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color-darker);
}

.description-container {
    min-height: 100px;
}

.styled-list {
    list-style: none; 
    padding-left: 0; 
}

    .styled-list li {
        position: relative;
        padding-left: 25px; 
        margin-bottom: 8px; 
        line-height: 1.5;
    }

        .styled-list li::before {
            content: "\f005"; 
            font-family: "Font Awesome 5 Free"; 
            font-weight: 900; 
            color: var(--primary-color); 
            position: absolute;
            left: 0;
            top: 0;
        }

.gym-text-justify {
    text-align: justify;
}
.btn-call-action {
    max-width: 25%;
   
}

/* Gyms */
.gym-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .gym-card.hidden {
        opacity: 0;
        transform: scale(0.95);
        pointer-events: none;
        position: absolute;
    }

.btn-outline-gym-red,
.btn-outline-gym-red:link,
.btn-outline-gym-red:visited {
    background-color: transparent;
    border: 1px solid var(--primary-color-darker);
    color: var(--primary-color-darker);
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

    .btn-outline-gym-red:hover {
        background-color: var(--primary-color);
        border: 1px solid var(--primary-color);
        color: var(--color-white);
    }


    .btn-gym-red,
    .btn-gym-red:link,
    .btn-gym-red:visited {
        background-color: var(--primary-color-darker);      
        color: var(--color-white);
        display: inline-block;
        text-decoration: none;
        transition: all 0.2s ease;
        position: relative;
        cursor: pointer;
    }

        .btn-gym-red:hover {
            background-color: var(--primary-color);
            color: var(--color-white);
        }


        /* Scheduler */


    .e-schedule .template-wrap .subject {
        font-weight: 600;
        font-size: 15px;
        padding: 4px 4px 4px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .e-schedule .template-wrap .time {
        height: 50px;
        font-size: 12px;
        padding: 4px 6px 4px;
        overflow: hidden;
    }

/* Pop-up */
.e-textlabel {
    font-weight: bold;
    padding-right: 5px;
}

.custom-event-editor td {
    padding: 5px;
}

.e-quick-popup-wrapper {
    width: 200px;
    max-width: 200px;
    height: auto;
}

    .e-quick-popup-wrapper .e-cell-content {
        padding: 0 10px 10px 10px;
    }

        .e-quick-popup-wrapper .e-cell-content div {
            padding-bottom: 10px;
        }

        .e-quick-popup-wrapper .e-cell-content .e-field {
            border-left-width: 0;
            border-top-width: 0;
            border-right-width: 0;
            height: 25px;
            width: 100%;
        }

    .e-quick-popup-wrapper .e-event-content {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .e-quick-popup-wrapper .e-event-content img {
            width: 100px;
        }

    .e-quick-popup-wrapper .e-event-header {
        position: absolute;
        right: 0;
    }

    .e-quick-popup-wrapper .e-cell-footer .e-event-create,
    .e-quick-popup-wrapper .e-event-footer .e-event-edit {
        position: absolute;
        right: 0;
    }

    .e-quick-popup-wrapper .e-event-footer .e-event-book {
    }

    .e-quick-popup-wrapper .e-event-footer .e-event-delete {
        padding-left: 100px;
    }

    .e-quick-popup-wrapper .e-event-content .subject {
        padding-top: 30px;
        font-weight: 500;
        font-size: 14px;
    }

    .e-quick-popup-wrapper .e-event-content .image img {
        height: auto;
        width: 100%;
    }


.employee-div-circle {
    width: 75px;
    height: 75px; 
    border-radius: 50%; 
    overflow: hidden; 
    display: flex; 
    justify-content: center;
    align-items: center; 
}

    .employee-div-circle img {
        width: 100%; /* Faz a imagem preencher a div */
        height: auto; /* Mantém a proporção */
    }

.position-employee {
    font-size:smaller;
}

.sessions-link{
    margin-top: 30px;
}

.full-height{
    height: 80vh;  
}

.full-height-country,
.full-height-appoint {
    height: 75vh;
}

.full-height-session {
    height: 65vh;
}
    /* Responsive */
    @media (max-width: 1000px) {
        .btn-call-action {
        max-width: 50%;
    }
}

@media (max-width: 767.98px) {
    .carousel-caption-botton-text h1,
    .carousel-caption-botton-text p {
        font-size: 1.5rem; 
        text-align: center; 
        opacity: 1; 
    }

    .btn-call-action {
        max-width: 100%;

    }
    .sessions-link {
        margin-top: 10px;
        margin-bottom: 15px;
    }
}

