* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto_Medium';
    scroll-behavior: smooth;
}

body {
    background-color: #F5F0F6;
    color: #2B4162;
    background-image: url('../img/parede.png');
}

@font-face {
    font-family: "Roboto_Medium";
    src: url("../fonts/Roboto-Medium.ttf");
}

@font-face {
    font-family: "MsMadi";
    src: url("../fonts/MsMadi-Regular.ttf");
}

body h1 {
    font-family: 'MsMadi';
    font-weight: 600;
    font-size: 50px;
}

body .btn {
    transition: all ease 0.5s;
}

body label,
body span {
    letter-spacing: 2px;
}

body .img-effect-kiss {
    display: flex;
    width: 100%;
}

body .img-effect-kiss .imgs-kiss,
body .img-effect-kiss .jovens {
    flex: 1;
    position: absolute;
}

@media only screen and (max-width: 780px) {

    body .img-effect-kiss .imgs-kiss,
    body .img-effect-kiss .jovens {
        top: 320px;
    }
}

body .img-effect-kiss .imgs-kiss {
    top: 20px !important;
    left: -25px;
    z-index: 999;
}

body .img-effect-kiss .lb:first-child {
    position: absolute;
    width: 150px;
    transform: rotate(-35deg);
    left: 0;
}

body .img-effect-kiss .lb:last-child {
    position: absolute;
    width: 150px;
    transform: rotate(-35deg);
    left: 0;
    z-index: -2;
}

body .img-effect-kiss .jovens {
    display: flex;
    flex-direction: column;
    align-items: end;
    overflow: hidden;
    right: 0;
    top: 100px;
    z-index: -1;
}

body .img-effect-kiss .jovens img {
    width: 100px;
    margin: 5px 0;
    opacity: 0.3;
}

body .img-effect-kiss .jovens img:first-child {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1) rotate(-35deg);
}

body .img-effect-kiss .jovens img:nth-child(2) {
    transform: rotate(-35deg);
}

body .img-effect-kiss .jovens img:last-child {
    transform: rotate(35deg);
}

@media only screen and (min-width: 1024px) {
    body .img-effect-kiss .lb:first-child {
        transform: rotate(-25deg);
        width: 350px;
        left: -45px;
    }

    body .img-effect-kiss .lb:last-child {
        width: 320px;
        left: 0px;
    }

    body .img-effect-kiss .imgs-kiss {
        left: -150px;
        top: 0;
        z-index: 10;
    }

    body .img-effect-kiss .jovens {
        right: -150px;
        top: 0;
        z-index: -1;
    }

    body .img-effect-kiss .jovens img {
        width: 200px;
    }
}

body .pulse {
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.95);
    }
}

body .config {
    display: flex;
    justify-content: end;
    align-items: end;
    flex-direction: column;
    height: 60px;
    padding: 20px;
}

body .config .points {
    display: flex;
}

body .loading {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
}

body .loading .loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

body .navbar {
    background-color: #D7B377;
    border: 0;
    box-shadow: 0px 0px 6px;
    border-radius: unset;
    margin: 0;
}

body .navbar .container {
    background-color: #D7B377;
    border: 0;
}

body .navbar .container .navbar-header .navbar-brand {
    font-family: 'MsMadi';
    color: #F5F0F6;
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 2px;
    transition: all ease 0.5s;
}

body .navbar .container .navbar-header .navbar-brand .ef {
    color: #2B4162;
    font-family: 'MsMadi';
}

body .navbar .container .navbar-header .navbar-brand:hover {
    transform: scale(1.04);
}

body .navbar .container .navbar-collapse .navbar-nav li a {
    color: #F5F0F6;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all ease 0.5s;
}

body .navbar .container .navbar-collapse .navbar-nav li a:hover {
    transform: scale(1.04);
}

body .login .title {
    text-align: center;
}

body .login form {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 10px;
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0px 0px 5px;
}

body .login form .form-group input {
    height: 40px;
}

body .home {
    position: relative;
}

@media only screen and (max-width: 780px) {
    body .home {
        overflow-x: hidden;
    }
}

body .home .signs {
    margin-top: 10px;
    display: flex;
    background-color: #8F754F;
    padding: 10px;
    position: sticky;
    z-index: -1;
    border-radius: 5px;
    box-shadow: 3px 3px 3px;
}

body .home .signs .content .text {
    font-size: 22px;
    color: #F5F0F6;
    font-weight: 600;
    letter-spacing: 3px;
}

body .home .title {
    text-align: center;
    font-family: 'MsMadi';
    font-size: 50px;
}

body .home .sub-title {
    text-align: center;
    font-family: 'MsMadi';
    font-size: 30px;
}

body .home form {
    margin: 20px 0;
}

@media only screen and (max-width: 780px) {
    body .home form {
        padding: 0 20px;
    }
}

body .home form .form-group .active-blue {
    border-color: #2B4162 !important;
    transform: scale(1);
    animation: active-blue 2s infinite;
}

@keyframes active-blue {
    0% {
        transform: scale(0.99);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.99);
    }
}

body .home form .form-group .group-radios {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

body .home form .form-group .group-radios .radio-inline {
    width: 100%;
    padding: 10px;
    border: 1px solid #D7B377;
    border-radius: 5px;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.5s;
    height: 50px;
}

body .home form .form-group .group-radios .radio-inline.active {
    background-color: #D7B377;
}

body .home form .form-group .group-radios .radio-inline input {
    display: none;
}

body .home form .form-group .group-radios .radio-inline span {
    display: block;
    text-align: center;
    margin: 0;
    font-size: 12px;
}

body .home form .form-group .group-radios .radio-inline i {
    font-size: 20px;
}

body .home form .form-group .complement {
    display: none;
}

body .home form .form-group .complement .col-sm-6:last-child {
    display: flex;
    justify-content: end;
    align-items: center;
    cursor: pointer;
}

body .home form .form-group .complement .col-sm-6:last-child span {
    margin-right: 5px;
}

body .home form #result .alert {
    display: flex;
}

body .home form #result .alert span {
    text-align: center;
    text-transform: uppercase;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: #000;
    font-size: 16px;
    font-weight: 600;
}

body .home #mural .alert,
body .home #ca .alert {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

body .home #mural .alert .user-photo,
body .home #ca .alert .user-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
}

body .home #mural .alert span,
body .home #ca .alert span {
    text-align: center;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

body .home #mural>.list-old>img,
body .home #ca>.list-old>img,
body .home #mural>.list-old span,
body .home #ca>.list-old span {
    opacity: 0.5;
}

body .home .republish {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}

body .home .republish .button-action {
    position: sticky;
    z-index: 2;
    background-color: #2B4162;
    transition: all ease 0.5s;
}

body .home .republish .button-action:hover {
    box-shadow: 0px 0px 5px;
}

@media only screen and (min-width: 1024px) {
    body .home form .form-group .group-radios {
        grid-template-columns: 1fr 1fr;
    }

    body .home form .form-group .group-radios .radio-inline span {
        font-size: 14px;
    }

    .imgs-kiss {
        margin-top: 30px !important;
    }
}

body .header {
    width: 100%;
    max-height: 250px;
    height: 100%;
    margin-bottom: 20px;
}

body .header .row {
    background-color: #D7B377;
    height: 100%;
}

@media only screen and (max-width: 780px) {
    .signs {
        margin-left: 60px;
    }

    body .header .row .col-sm-4 {
        display: none;
    }
}

body .header .row .logo img {
    max-height: 165px;
    object-fit: cover;
}

body .header h3.title {
    text-align: center;
    font-family: 'MsMadi';
    font-size: 30px;
    font-weight: 600;
}

body .header .header-carousel {
    height: 250px;
}

body .header .header-carousel .item-banner {
    position: relative;
    background-size: cover;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position: center;
}

body .header .header-carousel .item-banner .title {
    font-size: 25px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #F5F0F6;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

body .header .header-carousel .item-banner .text {
    font-size: 18px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 10px;
    color: #F5F0F6;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    margin-left: 20px;
}

body .header .header-carousel .item-banner .link {
    position: absolute;
    top: 20px;
    left: 20px;
}

body .header .header-carousel div {
    height: 250px;
}

body .header .header-carousel .slick-arrow::before {
    color: #F5F0F6;
    box-shadow: 0px 0px 15px #385F71;
    border-radius: 50%;
    font-size: 24px;
}

body .header .header-carousel .slick-prev {
    left: 10px;
    z-index: 1;
}

body .header .header-carousel .slick-next {
    right: 10px;
    z-index: 1;
    font-size: 18px;
}

body .mural-find-admin form {
    margin: 20px 0;
}

body .mural-find-admin form .form-group .group-radios {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

body .mural-find-admin form .form-group .group-radios .radio-inline {
    padding: 10px;
    border: 1px solid #D7B377;
    border-radius: 5px;
    width: 100%;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all ease 0.5s;
    height: 50px;
}

body .mural-find-admin form .form-group .group-radios .radio-inline.active {
    background-color: #D7B377;
}

body .mural-find-admin form .form-group .group-radios .radio-inline input {
    display: none;
}

body .mural-find-admin form .form-group .group-radios .radio-inline span {
    display: block;
    text-align: center;
    margin: 0;
    font-size: 12px;
}

body .mural-find-admin form .form-group .group-radios .radio-inline i {
    font-size: 20px;
}

body .mural-find-admin form .form-group .complement {
    display: none;
}

body .mural-find-admin form .form-group .complement .col-sm-6:last-child {
    display: flex;
    justify-content: end;
    align-items: center;
    cursor: pointer;
}

body .mural-find-admin form .form-group .complement .col-sm-6:last-child span {
    margin-right: 5px;
}

body .mural-find-admin form #result .alert {
    display: flex;
}

body .mural-find-admin form #result .alert span {
    text-align: center;
    text-transform: uppercase;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: #000;
    font-size: 16px;
    font-weight: 600;
}

body .print-mural #result .alert {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

body .print-mural #result .alert img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

body .print-mural #result .alert span {
    text-align: center;
    text-transform: uppercase;
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

body .home-admin .row .col-sm-6 .mode .col-sm-4 .alert {
    margin: 0;
}

body .home-admin .row .col-sm-6 .mode .col-sm-4.action i {
    font-size: 30px;
}