input::placeholder {
  color: #333;
}

button {
  position: relative;
    background-color: white;
    color: #333; 
    border: 1px solid #333;
    border-radius: 5px;
}

button.closePopArtist {
    position: relative;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 10x;
    width: auto;
}

button#addvideoclip {
  padding: 0;
  height: 40px;
  padding: 0 20px;
  line-height: 40px;
}

h2 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  color: black;
  margin-bottom: 30px;
}

h2 span {
  font-weight: 400;
}

ul.hands {
  margin-bottom: 40px;
}
ul.hands li {
  color: black;
  padding: 5px 0;
}

/* 
ul.artists {
    position: relative; 
    width: 100%;
    height: auto;
    margin: 0; 
    margin-top: 50px;
    padding: 0; 
}

ul.artists li {
    display: inline-block;
    cursor: pointer;
    margin-right: 5px;
    background-color: white;
}

 ul.artists li > div {
    position: relative;
    display: block;
    width: 250px;
    height: 90px;
    border: 1px solid #333;
    background-color: white;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

ul.artists li .imageProfile {
    position: absolute;
    width: 50px;
    height: 50px;
    margin: 20px;
    border-radius: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease; 
}

ul.artists li .imageProfile img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 100%;
}


ul.artists li .name {
    position: absolute;
    top: 0; 
    bottom: 0; 
    left: 80px;
    margin: auto;
    width: calc(100% - 110px);
    height: 25px;
    color: #333;
    overflow: hidden;
}

ul.artists li:hover > div{ 
  background-color: ghostwhite;
  transform: scale(1.1); 
  z-index: 2;
}

ul.artists li:hover .imageProfile {
  transform: scale(1.1);
}


ul.artists li .remove {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

ul.artists li .remove img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
 */



 ul.artists {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  margin-top: 50px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 50px;
}

ul.artists li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 250px; /* Tamanho base mínimo de 250px */
  max-width: 250px; /* Limite máximo de 250px */
  cursor: pointer;
  background-color: white;
  margin-right: 5px;
  margin-bottom: 10px;
}

ul.artists li > div {
  position: relative;
  display: block;
  width: 100%;
  height: 90px;
  border: 1px solid #333;
  background-color: white;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-sizing: border-box;
}

ul.artists li .imageProfile {
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 20px;
  border-radius: 100%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

ul.artists li .imageProfile img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

ul.artists li .name {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 80px;
  margin: auto;
  width: calc(100% - 110px);
  height: 25px;
  color: #333;
  overflow: hidden;
}

ul.artists li:hover > div {
  background-color: ghostwhite;
  transform: scale(1.1);
  z-index: 2;
}

ul.artists li:hover .imageProfile {
  transform: scale(1.1);
}

ul.artists li .remove {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

ul.artists li .remove img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Media Query para telas menores que 500px */
@media (max-width: 500px) {
  ul.artists li {
      flex: 1 1 100%; /* Para telas menores que 500px, a largura fica 100% */
      max-width: 100%; /* Limita a 100% da largura disponível */
  }
}




.btAddArtist {
  font-size: 50px;
  width: 100px;
  height: 100px;
  text-align: center;
  font-weight: 300;
  color: white;
  border-radius: 100px;
  line-height: 50px;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transition */
}

.btAddArtist:hover {
  transform: scale(1.2); /* Smooth scale effect */
  background-color: #333; /* Optional: change background on hover */
}


.addArtist {
  position: absolute;
  z-index: 12;
  left: 0; 
  right: 0;
  padding: 0;
  margin: auto;
  width: 100%;
  max-width: 1200px;
  height: auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  text-align: center;
}

.addArtist .artist {
  position: relative;
  width: 100%;
  height: auto;
  padding: 20px;
  margin: 40px 0;
  box-sizing: border-box;
}

.addArtist .section1 {
  position: relative; 
  width: 80%;
  min-height: 200px;
  margin: auto;
  text-align: left;
  display: flex;
  align-items: center;
} 

.addArtist .section1 .info {
  float: left;
  width: calc(100% - 200px);
  margin: 0; 
  padding: 0;
}

.addArtist .section1 .info div {
  position: relative;
  display: block;
}

.addArtist .section1 .info div img {
  width: 20px;
  display: inline-block;
  margin-right: 5px;
}

.addArtist .section1 input {
  width: calc(100% - 50px);
  margin: 0; 
  padding: 0;
  color: black;
}

.addArtist .section1 input.name {
  font-size: 38px;
  font-weight: 600;
  border: none;
}


.addArtist .section1 textarea.bio {
  width: calc(100% - 50px);
  vertical-align: top;
  height: auto;
  display: inline-block;
  min-height: 80px;
  font-size: 16px;
  font-weight: 300;
  border: none;
  outline: none;
  resize: none;
}

.addArtist .section2 {
  position: relative; 
  width: 80%;
  height: auto;
  min-height: 200px;
  margin: auto;
  display: flex;
  justify-content: space-between;

}

.addArtist .section2 .box1, 
.addArtist .section2 .box2, 
.addArtist .section2 .box3 {
  width: 25%;
  text-align: left;
  height: auto;
  display: inline-block;
  color: black;
  /* border: 1px solid #333; */
}

.addArtist .section2 .box2 {
  width: 30%;
}

.addArtist .section2 .box1 h5 {
  font-size: 14px;
  margin: 0; 
  padding: 30px 0 0 0;
}


.addArtist .section2 .box1 div {
  display: block;
  width: 100%;
  margin: 0;
}

.addArtist .section2 .box1 img {
  width: 20px;
  margin-right: 10px;
  display: inline-block;
}

.addArtist .section2 .box1 input {
  display: inline-block;
  width: 120px;
  border: none;
  padding: 10px 0; 
  font-size: 22px;
  border-radius: unset;
}


.addArtist .section2 .box1 .box-shadow, 
.addArtist .section2 .box2 .box-shadow {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 120px;
  border-radius: 8px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.addArtist .section2 .box1 .box-shadow {
  box-shadow: none;
}

.addArtist .section2 .box2 .price {
  padding: 20px 30px;
}

.addArtist .section2 .box2 .price .value {
  margin: 0; 
  padding: 0;
  font-size: 26px;
  font-weight: 600;
  color: black; 
}

.addArtist .section2 .box2 .price .value .cifra, 
.addArtist .section2 .box2 .price .value input, 
.addArtist .section2 .box2 .price .value img {
  padding: 0; 
  margin: 0;
  display: inline-block;
}

.addArtist .section2 .box2 .price .value img {
  width: 20px;
  margin-left: 3px;
}

.addArtist .section2 .box2 .price .value .cifra {
  width: 40px;
  font-size: 30px;
}

.addArtist .section2 .box2 .price .value input  {
  padding: 0;
  width: calc(100% - 65px);
  font-size: 30px;
  display: inline-block;
  border: none;
  font-weight: 500;
}

.addArtist .section2 .box3 .addr, 
.addArtist .section2 .box3 .tags, 
.addArtist .section2 .box3 .themes  {
  font-size: 18px;
  font-weight: 600;
  padding-top: 0;
  cursor: pointer;

}

.addArtist .section2 .box3 .tags {
  padding: 5px 0 5px 0;
}
.addArtist .section2 .box3 .themes {
  padding-bottom: 10px;
}


.addArtist .section2 .box3 .themes img,
.addArtist .section2 .box3 .tags img, 
.addArtist .section2 .box3 .addr img {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.addArtist .section2 .box3 .themes img {
  width: 25px;
  margin-right: 5px;
}

.addArtist .section2 .box3 img.edit {
  width: 15px;
  margin-left: 5px;
}

.addArtist .section2 .box3 .upload-kit {
  position: absolute;
  z-index: 2;
  border: 1px solid #333;
  padding: 5px 12px;
  width: auto;
  border-radius: 8px;
  cursor: pointer;
}

.addArtist .section2 .box3 .upload-kit:hover {
  background-color: ghostwhite;
}


.addArtist .section3 {
  position: relative; 
  width: 80%;
  min-height: auto;
  margin: auto;
  text-align: left;
}

.addArtist .section3 .videoclips {
  position: relative;
  display: block;
}

.addArtist .section3 .videoclips input, 
.addArtist .section3 .videoclips button {
  display: block;
}

.addArtist .section3 .videoclips input {
  width: calc(100% - 60px);
  display: inline-block;
  max-width: 370px;
  border: none;
  border-bottom: 1px solid #333;
  font-size: 14px;
  border-radius: 0;      
  padding-left: 0;
}

.addArtist .section3 .videoclips button  {
  width: auto;
  display: inline;
  padding: 5px 8px;
  font-size: 12px;
  background-color: white;
  color: #333;
  border: 1px solid #333;
  margin-left: 10px;
  cursor: pointer;
}


.addArtist .section3 .videoclips button:hover {
  background-color: ghostwhite;
}


.addArtist .section3 .videoclips .videos {
  cursor: pointer;
  margin: 0; 
  padding: 0; 
  list-style: none;
  overflow-x: auto; /* Adiciona uma barra de rolagem horizontal quando necessário */
  white-space: nowrap; /* Impede que os itens se quebrem para a linha seguinte */
  scrollbar-width: none; /* Firefox: oculta a barra de rolagem */
} 

.addArtist .section3 .videoclips .videos::-webkit-scrollbar {
    display: none; /* Chrome, Safari e outros navegadores Webkit: oculta a barra de rolagem */
  }

.addArtist .section3 .videoclips li {
  position: relative;
  display: inline-block;
  margin: 5px;
  border: none;
}

.addArtist .section3 .videoclips li iframe {
  border: none;
}

.addArtist .section3 .videoclips .videos video {
  width: 100%;
  max-width: 350px;
  height: 200px;
  border-radius: 8px;
}

.addArtist .section3 .videoclips .removeVideo {
  position: absolute;
  z-index: 3;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-weight: 400;
  background-color: white;
  color: black;
  border-radius: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  cursor: pointer;
}

.addArtist .section3 .socials {
  display: block;
  margin-top: 40px;
}

.addArtist .section3 .socials div {
  display: block;
  width: 100%;
}

.addArtist .section3 .socials div  button {
  width: auto;
  padding: 8px 12px;
  background-color: white;
  color: #333;
  border: 1px solid #333;
  margin-left: 10px;
  cursor: pointer;
}

.addArtist .section3 .socials div  button:hover {
  background-color: ghostwhite;
}


.addArtist .section3 .socials div.spotify {
  width: 100%;
}

.addArtist .section3 .socials div img,
.addArtist .section3 .socials div input {
  display: inline-block;
}

.addArtist .section3 .socials div img.edit {
  width: 20px;
  vertical-align: middle
}

.addArtist .section3 h5 {
  color: #333;
  margin-bottom: 20px;
  font-size: 22px;
}

.addArtist .section3 .socials div img {
  vertical-align: middle;
}

.addArtist .section3 .socials div input {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid gainsboro;
  padding: 0;
  margin-left: 10px;
  width: calc(100% - 100px);
  max-width: 300px;
}

.addArtist .section4 {
  position: relative; 
  width: 80%;
  height: auto;
  margin: 30px auto;
  margin-bottom: 60px;
  text-align: left;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.addArtist .section4 label {
  color: #333;
  display: block;
  font-size: 14px;
  display: inline-block;
}

.addArtist .section4 img {
  width: 20px;
  margin-right: 20px;
  display: inline-block;
}


.addArtist  .section4 input {
  font-size: 14px;
}

.addArtist .section4 h5 {
  color: #333;
  margin-bottom: 0;
}
 
.addArtist .section4 p {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  color:#333;
  font-size: 13px;
}

#autocomplete-list {
  position: absolute;
  margin-top: -20px;
  padding: 0 20px 20px 20px;
  overflow: auto;
  width: 100%;
  background-color: white;
  z-index: 3;
  max-height: 200px;
  color: #333;
  border-bottom: 1px solid #333;
  cursor: pointer;
}

#autocomplete-list.hidden {
  display: none;
}

.addArtist .section4 button {
  position: relative;
  margin: 0;
  margin-bottom: 50px;
  left: 0;
  width: auto;
  padding: 12px 30px;
  background-color: black;
  color: white;
}

.addArtist .section5 {
  position: relative; 
  width: 80%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: right;
  padding-top: 10px;
  font-size: 14px;
}

.addArtist .section5 div, 
.addArtist .section5 button {
  display: inline-block;
  color: #333;
}

.addArtist .section5 button {
  padding: 8px 12px;
  font-size: 13px;
  border: none;
  width: auto;
  background-color: coral;
  color: black;
  font-weight: 600;
  margin-left: 10px;
}



.addArtist .closePop {
  position: absolute; 
  z-index: 2;
  top: 0; 
  left: 0; 
  margin: 15px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

.addArtist .info-save {
  color: #333;
  font-size: 13px;
  font-weight: 500;
  margin: 20px auto;
}


    
    .popup .contentPop button {
        width: auto;
        padding: 8px 10px;
        display: inline-block;
        margin: 0 5px;
        background-color: black;
        color: white; 
    }
  
  
    .popup .contentPop button.simple {
        background-color: transparent;
        color: black;
        border: none;
    }
    
    .popup .contentPop button.option {
        background-color: transparent;
        color: black;
        border: 1px solid black;
    }
    
    .popup .contentPop button.option:hover {
        background-color: ghostwhite;
    }
    
    .popup .contentPop h5 {
        font-size: 16px;
        font-weight: 300;
        line-height: 18px;
        margin: 20px 0 40px 0;
        color: #333;
    }
    
    
    .popup .contentPop .buttons {
      display: inline-block;
      margin: 20px 0; 
    }
    
    .popup .contentPop .buttons button {
      display: inline-block;
    }


    .popup .contentPop .form {
        width: 100%;
        height: auto;
        text-align: left;
    }
    
    .popup .contentPop .form div {
        margin: 30px 0;
    }
    
    
    .popup .contentPop .form div.checkform {
        position: relative;
        width: 100%;
        height: 30px;
        display: inline-block;
        height: auto;
        padding: 20px 0 0 0;
        margin: 0;
        color: #333;
    }
    
    .popup .contentPop .form div.checkbox {
        position: relative;
        display: inline-block;
        width: 15px;
        height: 15px;
        padding: 0;
        margin: 0;
        margin-right: 5px;
        border: 1px solid black;
        border-radius: 2px;
        cursor: pointer;
        vertical-align: middle;
    } 
    
    
    .popup .contentPop .form div.checkbox img {
        position: absolute;
        display: none;
        top: 0; 
        left: 0;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .popup .contentPop .form div.checkform.selected div.checkbox {
        border: 1px solid black;
    }
    
    .popup .contentPop .form div.checkform.selected div.checkbox img {
    display: block;
    }
    
    .popup .contentPop .form label,  
    .popup .contentPop .form input {
        display: block;
        width: 100%;
        color: #333;
    }
    
    .popup .contentPop .form input::placeholder {
        color: gainsboro;
    }
    
    .popup .contentPop .form label {
        font-size: 13px;
        font-weight: 500;
    }
    
    .popup .contentPop .form input {
        border: none;
        padding: 10px 0;
        border-bottom: 1px solid #333;
        border-radius: 0;
    }
    
    
    .popup .contentPop .form .radius {
        /* display: none; */
        width: 100%;
        height: 30px;
        color: #333;
        margin: 0; 
        padding: 10px 0 0 0;
    }
    
    .popup .contentPop .form .radius span {
        font-weight: 500;
    }
    
    .popup .contentPop .form .radius input {
        width: 50px;
        border-bottom: 1px solid #333;
        display: inline-block;
        padding: 0 5px;
        font-weight: 500;
    
    }

.compl-address {
  display: none;
}

#map {
  position: relative;
  top: 0;
  height: 400px; /* Full viewport height */
  width: 100%;   /* Full width */
  display: none;  /* Initially hide the map */
}

#distance-slider {
  width: 100%;
  max-width: 200px;
}


.distance {
  -webkit-appearance: none;
  width: 100%; /* Full width of the slider */
  height: 2px; /* Height of the slider track */
  background: #ddd; /* Track color */
  border-radius: 5px; /* Rounded corners */
  outline: none; /* Remove outline */
  transition: background 0.3s; /* Smooth transition on value change */
}

/* Styles for the slider thumb (the draggable part) */
.distance::-webkit-slider-thumb {
  width: 15px; /* Width of the thumb */
  height: 15px; /* Height of the thumb */
  border-radius: 50%; /* Rounded thumb */
  background: #4CAF50; /* Thumb color */
  cursor: pointer; /* Pointer cursor on hover */
}

.distance::-moz-range-thumb {
  width: 15px; /* Width of the thumb */
  height: 15px; /* Height of the thumb */
  border-radius: 50%; /* Rounded thumb */
  background: #4CAF50; /* Thumb color */
  cursor: pointer; /* Pointer cursor on hover */
}

.distance::-ms-thumb {
  width: 15px; /* Width of the thumb for IE */
  height: 15px; /* Height of the thumb for IE */
  border-radius: 50%; /* Rounded thumb for IE */
  background: #4CAF50; /* Thumb color for IE */
  cursor: pointer; /* Pointer cursor on hover */
}

/* Styles for Firefox track */
.distance::-moz-range-track {
  background: #ddd; /* Track color for Firefox */
}

/* Styles for IE track */
.distance::-ms-track {
  background: transparent; /* Make the track transparent */
  height: 2px; /* Height of the track */
  border-color: transparent; /* No border */
  color: #ddd; /* Track color */
}


/* Estilos para a exibição do valor do slider */
#distance-value {
  margin-left: 10px;
  font-weight: bold;
}

.i-s-gmp,
.i-genre,
.i-theme, 
.i-kit {
  color: #333;
  font-size: 12px;
  font-weight: 500;
}


.error {
  color: red
}

.formatted-address {
  position: relative;
  display: inline-block;
  font-weight: 300;
  font-size: 13px;
}


.popup .multi-column-list {
  position: relative;
  text-align: left;
  max-width: 100%;
  color: #333;
  display: inline-block;
  list-style: none; 
  padding: 0; 
  margin: 20px auto;
  height: auto;
  font-size: 12px;
  cursor: pointer;
  overflow-x: auto;
  scrollbar-width: none;
}


.popup.cn .multi-column-list {
  max-height: 600px;
}


.popup .multi-column-list::-webkit-scrollbar {
  display: none; 
}

.popup .multi-column-list li {
  position: relative;
  width: auto;
  display: inline-block;
  text-align: left;
  padding: 5px 1px; 
}

.popup .multi-column-list li div {
  height: auto;
  padding: 8px 15px;
  border: 1px solid #333;
  border-radius: 40px;
  margin-right: 10px;
  display: inline-block; 
  width: auto;
}


.popup .multi-column-list li div.selected {
  border: 1px solid transparent;
  background-color: gainsboro;
} 


input#genreSearch {
  border: none; 
  margin: 0; 
  border-bottom: 1px solid #666; 
  font-size: 13px;
  border-radius: 0;
  width: 100%;
}

.list-themes,
.list-genres {
  position: relative;
  width: auto;
  display: inline-block;
  margin: 0; 
  padding: 0; 
  list-style-type: none;
}

.list-themes li,
.list-genres li {
  position: relative;
  width: auto;
  display: inline-block;
  border: 1px solid #666;
  padding: 8px;
  border-radius: 40px;
  font-size: 12px;
  color: #666;
  margin: 2px;
}

.kit {
  position: relative;
  width: auto;
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid black;
  border-radius: 8px;
  height: auto;
  color: black;
  cursor: pointer;
}

.kit img {
  position: relative;
  width: 15px;
  margin-right: 5px;
  height: auto;
  object-fit: contain;
}

.popup .contentPop button.upload {
  position: relative;
  width: auto;
  display: inline-block;
  display: none;
  cursor: pointer;
}

.removeKit {
  color: #333;
  margin-left: 8px;
  border-radius: 100%;
  display: inline-block;
}

.popup .contentPop button.remove-upload {
  position: relative;
  width: auto;
  margin: auto;
  text-align: center;
  display: block;
  cursor: pointer;
}

.upload-kit img {
  width: 15px;
  vertical-align: middle;
  height: auto;
  margin-right: 10px;
}

@media (max-width: 1000px) {
  .addArtist .section2 {
    position: relative; 
    width: 80%;
    height: auto;
    min-height: 200px;
    height: 350px;
    margin: auto;
    display: block;
    justify-content: space-between;
  
  }
  
  .addArtist .section2 .box1, 
  .addArtist .section2 .box2{
    display: inline-block;
    width: 49%;
  }
  

  .addArtist .section2 .box3 {
    position: relative;
    margin-top: 40px;
    width: 100%;
    text-align: left;
    height: auto;
    display: block;
    color: black;
    height: 100px;
  }

}

@media (max-width: 640px) {
  .addArtist .section2 {
    height: auto;  
    margin-bottom: 150px;
  }
  
  .addArtist .section2 .box1, 
  .addArtist .section2 .box2, 
  .addArtist .section2 .box3 {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
  }
 
  .box-shadow div {
    position: relative;
    margin: 10px 0;

  }
  .addArtist .section1 {
    position: relative; 
    width: 80%;
    min-height: 200px;
    margin: auto;
    text-align: left;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: flex-start;
  }
  
  .addArtist .section1 .info {
    width: 100%; /* Full width to avoid floating or side-by-side layout */
    margin-top: 20px; /* Optional: Add some space above */
  }

  .addArtist .section1 .info div {
    margin-bottom: 20px;
  }

  .addArtist .section1,
  .addArtist .section2,
  .addArtist .section3,
  .addArtist .section4 {
    width: calc(100% - 20px);
  }


  #map {
    height: 200px; /* Full viewport height */
    width: 100%;   /* Full width */
    display: none;  /* Initially hide the map */
  } 

  .popup.medium ul.multi-column-list {
    max-height: 330px;
  }
}


@media (max-width: 400px) {

  #distance-slider {
    width: 100%;
    max-width: 160px;
  }
  .section4 input{
    width: 100%;
    max-width: 300px;
  }
}


.closePop.artistpop {
  position: absolute;
  top: 20px;
  right: 0;
  font-size: 25px;
  font-weight: 500;
  text-align: right;
  margin: 0;
}