:root {
    --cor-padrao: #0000FF;
    --cor-padrao-hover: #3B3BFF;
    --cor-h1: #1C244B;
    --white: #fff;
    --background-grey: #efefef;
}

.bg-gray-900 {
    background-color: var(--cor-padrao);
}

.bg-gray-900:hover {
    background-color: var(--cor-padrao-hover);
}

.bg-gray-400 {
    background-color: var(--cor-padrao-hover);
}

.bg-gray-400:hover {
    background-color: var(--cor-padrao-hover);
}

.bg-gray-300 {
    background-color: var(--cor-h1);
    color: white;
}

.bg-gray-100 {
    background-color: #fff;
}

/* Font and Basic Settings */
html {
    height: 100%;
}

body {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--cor-h1);
    line-height: 1.6;
    background: #fff;
    /* height: 100vh; */
    /* background: rgb(236, 234, 253);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(236, 234, 253, 1)), to(rgba(255, 255, 255, 1))) fixed; */
}

a {
    text-decoration: none;
    color: var(--cor-h1);
}

p {
    padding: 0px;
    margin: 0;
}

.content {
        /* width: 90%; */
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    padding: 0px 20px;
}



.banner-google-top {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 20px auto;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    overflow: hidden;
}

.banner-google {   
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 20px auto;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    overflow: hidden;
}






/* Header */
.header {
    background-color: #fff;
    padding: 0px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: relative; */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--cor-h1);
    font-weight: bold;
}

.nav-links a:hover {
    color: var(--cor-padrao);
}


.logo {
	cursor: pointer;
	min-width: 150px;
	max-width: 200px;
	max-height: 90px;
	object-fit: contain;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo img {
	max-width: 200px;
	max-height: 200px;
	object-fit: contain;
}

.logo a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn-criar-conta {
    background-color: var(--cor-padrao);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 10px;
}

.btn-criar-conta:hover {
    background-color: var(--cor-padrao-hover);
    transition: 0.3s;
}

/* Estilos para o ícone de menu */
.menu-togglee {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}



.ptbr {
    padding: 0px 3px 0px 3px;
    border: 3px solid var(--cor-padrao);
    border-radius: 5px;
    background: transparent;
    cursor:pointer;
}

.en {
    padding: 0px 3px 0px 3px;
    border: 3px solid transparent;
    border-radius: 5px;
    background: transparent;
    cursor:pointer;
}

.es {
    padding: 0px 3px 0px 3px;
    border: 3px solid transparent;
    border-radius: 5px;
    background: transparent;
    cursor:pointer;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 37px;
        right: 35px;
        background-color: #fff;
        width: 155px;
        padding: 15px 0px 15px 9px;
        /* border: 1px solid var(--cor-padrao); */
        border-radius: 10px;
        flex-direction: column;
        box-shadow: 0 0 5px var(--cor-padrao);
    }

    .logo img {
        max-width: 200px;
        max-height: 200px;
    }


    .menu-icon {
        display: block;
    }

    /* Quando o checkbox está marcado, mostra o menu */
    .menu-togglee:checked~.nav-links {
        display: flex;
    }

}




















/* ------------- DIV 1 ------------*/

.div1 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-self: center;
    align-items: center;
    max-width: 1200px;
    padding: 20px;
    gap: 20px;
}

.div1 h1 {
    margin-top: 10px;
    font-size: 34px;
    color: var(--cor-padrao);
}

.into {
    padding: 20px 10px;
    border: 5px solid var(--cor-padrao);
    border-radius: 20px;
    width: 50%;
}

.into-img {
    padding: 5px 10px;
    width: 50%;
}

.into-img img {
    width: 100%;
    height: auto;
}



  .custom-radio-group input[type="radio"] {
    display: none;
  }
  
  /* Estilo visual dos botões */
  .custom-radio-group label {
    display: inline-block;
    padding: 10px 20px;
    margin: 0px;
    border: 2px solid #ccc;
    border-radius: 25px;
    cursor: pointer;
    background-color: white;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  /* Hover */
  .custom-radio-group label:hover {
    background-color: #f0f0f0;
  }
  
  /* Quando o input radio estiver checado */
  .custom-radio-group input[type="radio"]:checked + label {
    background-color: var(--cor-padrao);
    color: white;
    border-color: var(--cor-padrao);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
  }

  .div1 label, p {
    display: block;
    margin-top: 0px;
    /* font-weight: 600;
    color: #34495e; */
  }

  .div1 p {
    font-weight: 600;
    color: #34495e;
  }

  .div1 label {
    font-weight: 600;
    color: #34495e;
  }

  .div1 .input-group {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .div1 input[type="checkbox"] {
    display: none;
  }

  .div1 input[type="checkbox"] + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
  }

  .div1 input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 2px solid  var(--cor-padrao);
    border-radius: 4px;
    background-color: #fff;
    transition: background-color 0.3s, border-color 0.3s;
  }

  .div1 input[type="checkbox"]:checked + label::before {
    background-color: var(--cor-padrao);
    border-color: var(--cor-padrao);
  }

  .div1 input[type="checkbox"]:checked + label::after {
    content: "✔";
    position: absolute;
    left: 4px;
    top: 0;
    font-size: 18px;
    color: #fff;
  }

  .div1 input[type="number"] {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: calc(100% - 22px);
    max-width: 200px;
  }

  .div1 .hidden {
    display: none;
  }

  .div1 button {
    margin-top: 30px;
    padding: 12px 20px;
    font-size: 16px;
    background-color:  var(--cor-padrao);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .div1 button:hover {
    background-color:  var(--cor-padrao);
  }

  .div1 #resultado {
    margin-top: 30px;
    padding: 20px;
    background-color: #ecf0f1;
    border-left: 5px solid var(--cor-padrao);
    font-size: 1.1em;
    border-radius: 5px;
  }

  .div1 .label-gen {
    margin-top: 20px;
  }


  /* .div1 {
    opacity: 0;
    animation: fadeIn 1s forwards;
  }
  
  @keyframes fadeIn {
    100% {
      opacity: 1;
    }
  } */


@media (max-width: 768px) {
    
    .div1 {
        display: flex;
        flex-direction: column;
    }

    .into {
        width: 100%;
    }
    .into-img {
        width: 100%;
    }
}


/* ------------- DIV 2 ------------*/

.div2 {
    display: flex;
    flex-direction: column;
}

.titulo-type {
    display: flex;
    justify-content: center;
}
.titulo-type h2 {
    font-size: 34px;
    color: var(--cor-h1);
    padding-bottom: 20px;
}

.into-2 {
    display:flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.into-type {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 170px;
    padding: 10px;
    border-radius: 20px;
}

.into-type h3 {
    padding: 0px;
    margin: 0;
}
.type-img {
    display: flex;
    justify-content: center;
}
.into-type img {
    width: 120px;
    height: 270px;
}

.type-p-faixa {
    color: grey;
    font-size: 14px;
    font-weight: bold;
    padding-top: 5px;
}

.type-p-desc {
    font-size: 17px;
    padding-top: 5px;
    line-height: 17px;
}




/* ------------- DIV 3 ------------*/


.div3 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    padding: 20px;
    /* margin-top: 100px;
    margin-bottom: 100px; */
}

.div3 h4 {
    font-size: 34px;
    color: var(--cor-padrao);
    margin-top: 0;
}

.into-3 {
    padding: 5px 10px;
    width: 50%;
}




@media (max-width: 768px) {
    
    .div3 {
        display: flex;
        flex-direction: column;
    }

    .into-3 {
        padding: 5px 10px;
        width: 100%;
    }

    .div3 h4 {
        margin-top: 0;
    }
}





/* ------------- DIV 4 ------------*/


.div4 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
}

.div4 h4 {
    font-size: 34px;
    color: var(--cor-padrao);
}

.into-4 {
    padding: 5px 10px;
    width: 50%;
}




@media (max-width: 768px) {
    
    .div4 {
        display: flex;
        flex-direction: column;
    }

    .div1 {
        margin-top: 0px;
    }

    .into-4 {
        padding: 5px 10px;
        width: 100%;
    }

    .div4 h4 {
        margin-top: 0;
    }
}

/* section {
    margin-top: 50px;
} */



/* ------------- DIV 5 SOBRE ------------*/


.div5 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
    margin-top: 5px;
}

.div5 h4 {
    font-size: 34px;
    margin-top: 10px;
    color: var(--cor-h1);
    margin-top: 0;
}


@media (max-width: 768px) {
    
    .div5 {
        display: flex;
        flex-direction: column;
    }

    .div5 {
        margin-top: 0px;
    }

    .div5 h4 {
        margin-top: 0;
    }
}






/* ------------- DIV 6 Políticas ------------*/


.div6 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
    margin-top: 5px;
}

.div6 h4 {
    font-size: 34px;
    margin-top: 10px;
    color: var(--cor-h1);
}

.div6 h5 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--cor-h1);
}


@media (max-width: 768px) {
    
    .div6 {
        display: flex;
        flex-direction: column;
    }

    .div6 {
        margin-top: 0px;
    }
}






/* ------------- DIV 7 TERMOS ------------*/


.div7 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
    margin-top: 5px;
}

.div7 h4 {
    font-size: 34px;
    margin-top: 10px;
    color: var(--cor-h1);
}

.div7 h5 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--cor-h1);
}


@media (max-width: 768px) {
    
    .div7 {
        display: flex;
        flex-direction: column;
    }

    .div7 {
        margin-top: 0px;
    }
}







/* ------------- DIV 8 Contato ------------*/


.div8 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
    margin-top: 5px;
}

.div8 h4 {
    font-size: 34px;
    margin-top: 10px;
    color: var(--cor-h1);
}


@media (max-width: 768px) {
    
    .div8 {
        display: flex;
        flex-direction: column;
    }

    .div8 {
        margin-top: 0px;
    }
}




























.navbar-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
}

.nav-links-footer {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-links-footer a {
    text-decoration: none;
    color: var(--cor-h1);
    font-weight: bold;
    font-size: 14px;
}

.nav-links-footer a:hover {
    color: var(--cor-padrao);
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-social {
    width: 24px;
    margin-right: 5px;
}

/* Footer */
.footer {
    background-color: #fff;
    border-top: 1px solid #ddd;
    color: #fff;
    text-align: center;
    /* padding: 20px 0; */
    /* margin-top: 100px; */
}

.footer p {
    color: var(--cor-h1);
}

.content-footer {
    padding: 10px 0px 10px 0px;
}

@media (max-width: 768px) {
    .navbar-footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        padding-bottom: 5px;
    }

    .nav-links-footer {
        list-style: none;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        padding: 0;
        gap: 0px;
    }

}

/* Estilo para modal ou popup com scroll */
body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--cor-padrao);
    border-radius: 6px;
}

body::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

body::-webkit-scrollbar-button {
    display: none;
}
















































.opcoes-top {
    display: flex;
    justify-content: space-between;
    top: 0;
}

.opcoes-um {
    display: flex;
    justify-content: center;
    align-items: center;
}

.opcoes-um button {
    color: var(--cor-h1);
    border: none;
    background: none;
    cursor: pointer;
}
.opcoes-um button:hover {
    color: var(--cor-padrao);
}



.zoom-mais svg {
    width: 20px;
    height: 20px;
}

/* .zoom-menos {

} */
.zoom-menos svg {
    width: 20px;
    height: 20px;
}



.opcoes-dois {
    display: flex;
    justify-content: center;
    align-items: center;
}
.opcoes-dois button {
    color: var(--cor-h1);
    border: none;
    background: none;
    cursor: pointer;
}
.opcoes-dois button:hover {
    color: var(--cor-padrao);
}
.tela-cheia svg {
    width: 20px;
    height: 20px;
}


.content-page {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 200px);
}


@font-face {
    font-family: 'DigitalFont';
    src: url('digital-7mono-italic.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
  }

#relogio {
    font-family: 'DigitalFont', monospace;
    font-size: 100px;
    color: var(--cor-padrao);
    /* background-color: #000; */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    /* letter-spacing: 2px; */
}

#data-atual {
    font-family: 'DigitalFont', monospace;
    font-size: 30px;
    color: var(--cor-h1);
    /* background-color: #000; */
    /* padding: 20px; */
    border-radius: 10px;
    text-align: center;
    /* letter-spacing: 2px; */
}




#cronometro {
    font-family: 'DigitalFont', monospace;
    font-size: 100px;
    color: var(--cor-padrao);
    font-weight: 900;
    /* background-color: #000; */
    padding: 20px;
    border-radius: 10px;
    /* width: 200px; */
    /* margin-right: 60px; */
}

.content-page button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
}

.content-page button:hover {
    background-color: #444;
}

#laps {
    margin-top: 20px;
    font-family: Arial, sans-serif;
    color: white;
}

#startBtn {
    background: var(--cor-padrao);
}

#resetBtn {
    display: none;
    background: red;
}

#lapBtn {
    display: none;
    background: var(--cor-padrao);
    
}

#stopBtn {
    display: none;
    background: red;
}

#laps {
    color:#000;
    margin-top: 20px;
}

.lap-item {
    background: var(--cor-padrao);
    border: 1px solid var(--cor-padrao);
    color: var(--white);
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 5px;
    list-style: none;
    margin-bottom: 5px; /* Para separar as voltas */
    text-align: left;
    width: max-content;
    margin: 5px auto;
}
#laps ul {
    padding-left: 0px;
}

/* .start-reset {

}

.lap-stop {

} */

.milisegundos {
    font-size: 0.5em; /* Diminui o tamanho da fonte */
    vertical-align: super; /* Ajusta para que os milésimos fiquem um pouco mais altos, se necessário */
}


/* -------------------------------------- Tela de Hora -------------------------------------- */

.div-instancia {
    display: flex;
    /* height: 100vh; */
    background: var(--background-grey);
}


#sidebar_content {
    height: 100%;
}

#sidebar_content a {
    display: flex;
    align-content: center;
    align-items: center;
}

#sidebar_content span {
    display: flex;
    align-items: center;
}

#sidebar_content ul {
    list-style: none;
    padding: 0;
}

#sidebar_content li a {
    padding: 7px 10px;
    border-radius: 5px;
}

/* #sidebar_content a svg {
    margin-right: 10px;
} */


.side-item a {
    text-decoration: none;
    border-radius: 10px;
    color: var(--cor-padrao);
    list-style: none;
    font-size: 15px;
}

.side-item.active {
    border-radius: 10px;
    background-color: var(--cor-padrao);
}

.side-item.active a {
    color: var(--white);
}

.side-item:hover:not(.active) {
    background: var(--background-grey);
    color: var(--cor-padrao);
    border-radius: 10px;
    transition: 0.3s;
}

.side-item:hover:not(.active) a {
    color: var(--cor-padrao);
}

.side-item a {
    text-decoration: none;
}

.alinhamento {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#sidebar {
    background: var(--white);
    margin: 15px;
    padding: 15px;
    border-radius: 20px;
    overflow: hidden;
    flex: 0 0 140px;
}

.div-meio {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    /* height: 100vh; */
    margin: 15px 0px 0px 0px;
}

.topbar {
    background: var(--white);
    margin: 15px 15px 15px 0px;
    padding: 15px;
    border-radius: 15px;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
}

.nome-instancia {
    font-size: 14px;
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    background: var(--cor-padrao);
}

/* Estilizando o menu */
#menu-home {
    display: none; /* Oculta o menu por padrão */
    position: absolute;
    background-color: var(--white);
    font-size: 14px;
    border: none;
    border-radius: 10px;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    padding: 8px;
    top: 0;
    right: 0;
    margin-right: 70px;
    margin-top: 40px;
    z-index: 1;
  }
  
  #menu-home a {
    display: block;
    color: var(--cor-padrao);
    padding: 8px;
    text-decoration: none;
  }
  
  #menu-home a:hover {
    background-color: var(--cor-padrao);
    color:var(--white);
    border: none;
    border-radius: 7px;
  }
  
  /* Estilizando o ícone do menu */
  #menu-icon-home {
    cursor: pointer;
  }

  .menu-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    border-bottom: 2px solid var(--cor-padrao);
    padding: 10px 15px;
    position: fixed;
    width: 100%;
    z-index: 1;
  }
  .menu-home button {
    display: flex;
    align-items: center;
    margin-right: 30px;
  }

  .botao-sair {
    background-color: var(--white);
    border: none;
    color: var(--cor-padrao);
    padding: 4px 5px;
    border-radius: 100%;
    cursor: pointer;
  }
  .botao-sair:hover {
    background-color: var(--cor-padrao);
    color: var(--white);
    transition: 0.3s;
  }

.div-conteudo {
    background: var(--white);
    margin: 0px 15px 15px 0px;
    padding: 15px;
    border-radius: 20px;
    /* height: 100vh; */
}

#menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

#sidebar.active {
    display: block;
}

@media (max-width: 768px) {
    #sidebar {
        display: none;
        position: fixed;
        width: 150px;
        height: 100vh;
        background: var(--white);
        left: 0;
        top: 0;
        padding: 15px;
        box-shadow: 2px 0 5px rgba(0,0,0,0.2);
        transition: 0.3s;
    }
    .menu-toggle {
        display: block;
        position: fixed;
        top: 10px;
        left: 10px;
        background: var(--cor-padrao);
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        z-index: 1000;
    }
    .div-conteudo {
        margin: 0px 15px;
    }

    .content-page {
        min-height: calc(100vh - 270px);
    }
    
    .hora-despertador {
        font-size: 60px;
    }
    #relogio {
        font-size: 60px;
    }
}

/* Exibir o botão apenas no mobile */
@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }
}



/* @media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
} */








/* ----------------- TEMPORIZADOR ----------------- */

#temporizador {
    font-family: 'DigitalFont', monospace;
    font-size: 100px;
    color: var(--cor-padrao);
    /* background-color: #000; */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    /* letter-spacing: 2px; */
}

#popup-temporizador {
    display:none;
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    background: var(--white);
    padding: 20px;
    border: 2px solid black;
    border-radius: 10px;
    z-index: 1000;
}

.popup-conteudo {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    position: relative;
}

#popup-temporizador h2 {
    margin-top: 0;
}


.div-hora-temp {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    gap: 25px;
    align-items: stretch;
}

.div-hora-temp input {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.div-titulo-alarme input {
    display: flex;
    flex-direction: column;
}



.div-sons {
    margin-top: 20px;
    margin-top: 10px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: stretch;
}



.btn-popup button {
    margin: 0;
    height: 40px;
}


#fechar-popup {
    background: var(--cor-padrao);
    color: var(--white);
    cursor: pointer;
    float: right;
    padding: 5px 10px;
    border-radius: 100%
}
#fechar-popup:hover {
    background: var(--cor-padrao-hover);
}
#fechar-popup span {
    padding: 0;
    margin: 0;
}




/* ----------------- ALARME ----------------- */

.popup-alarme {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-conteudo {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    position: relative;
}

.popup-conteudo h2 {
    margin-top: 0;
}

.popup-conteudo select {
    padding: 5px;
    border-radius: 5px;
}

.div-repetir-som {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}
.div-repetir-som input {
    margin-right: 10px;
}

.div-selecionar-som {
    margin-top: 10px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: stretch;
}

#fecharPopupAlarme {
    background: var(--cor-padrao);
    color: var(--white);
    cursor: pointer;
    float: right;
    padding: 5px 10px;
    border-radius: 100%
}
#fecharPopupAlarme:hover {
    background: var(--cor-padrao-hover);
}
#fecharPopupAlarme span {
    padding: 0;
    margin: 0;
}

.div-titulo-alarme {
    width:100%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 15px;
}
.div-titulo-alarme input {
    padding: 5px;
    border-radius: 5px;
    border: 2px solid var(--cor-padrao);
}

.btn-popup {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.btn-popup button {
    margin: 0;
    height: 40px;
}

.btn-popup button {
    padding: 10px 20px;
    margin: 0px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
}



/* ----------------- HORA ----------------- */

#seletor-paises {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 15px;
}