* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body.no-scroll {
    overflow: hidden;
}
@font-face {
    font-family: 'Skia';
    font-style: normal;
    font-weight: normal;
    src: url('assets/fonts/ufonts.com_skia.woff') format('woff');
}
.info-panel-img {
    position: relative;
    border-top: 1px solid #aaaabb;
    border-left: 1px solid #aaaabb;
    border-right: 1px solid #aaaabb;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.info-panel-shadow {
    border-radius: 10px;
    border-radius: 10px;
    box-shadow: 1px 1px 3px 0 rgba(119, 119, 119, 0.75);
}
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    max-width: 600px;
    max-height: 600px;
    background: linear-gradient(
      to right,
      hsla(0, 0%, 79%, 1),
      hsla(0, 0%, 96%, 1) 50%,
      hsla(0, 0%, 79%, 1)
    );
    padding: 20px;
    border-radius: 10px;
    z-index: 2;
    font-size: 17px;
    font-family: 'Skia', Verdana, sans-serif;
}
/* Media query for tablet devices */
@media (max-width: 1024px) and (min-width: 769px) {
    #popup {
      font-size: 16px; /* Adjust as needed */
    }
}
/* Media query for smartphone devices */
@media (max-width: 768px) {
    #popup {
      font-size: 14px;
    }
}
@media (min-width: 768px) {
    #popup {
      width: 60vw;
      height: 60vw;
    }
}
.popup-h3 {
    font-size: 23px;
    font-family: 'Skia', Verdana, sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}
/* Media query for tablet devices */
@media (max-width: 1024px) and (min-width: 769px) {
    .popup-h3 {
      font-size: 20px;
    }
}
/* Media query for smartphone devices */
@media (max-width: 768px) {
    .popup-h3 {
      font-size: 15px;
    }
}
.popup-content {
    position: relative;
    height: calc(100% - 50px);
    overflow-y: auto;
    padding: 20px;
    border: 1px solid #aaaabb;
    background: #fff;
    border-radius: 10px;
}
.popup-content img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    margin-bottom: 5px;
}
.popup-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 30px;
}
/* Media query for tablet devices */
@media (max-width: 1024px) and (min-width: 769px) {
    .popup-buttons {
      bottom: 18px;
    }
}
/* Media query for smartphone devices */
@media (max-width: 768px) {
    .popup-buttons {
      bottom: 15px;
    }
}
#close-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 36px;
    background: #fff;
    border: 1px solid #bababa;
    border-radius: 5px;
    transition: background 0.3s, border-color 0.3s;
}
#close {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    font-size: 14px;
    font-family: Verdana, sans-serif;
    color: #000;
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}
#close-button-container:hover {
    background: #E0EEF9;
    border-color: #0078D4;
}
#button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(to right, #c5c5c5 0%, #fff 50%, #c5c5c5 100%);
    padding: 30px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 1px solid #aaaabb;
    border-left: 1px solid #aaaabb;
    border-right: 1px solid #aaaabb;
    border-bottom: 1px solid #aaaabb;
}
#trigger-button {
    display: inline-block;
    width: auto;
    padding: 15px 20px;
    margin: auto;
    background: linear-gradient(to right,
                                #8F8F8F 0%,
                                #BEBEBE 20%,
                                #D3D3D3 28%,
                                #BEBEBE 36%,
                                #8F8F8F 100%);
    color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 34px;
    font-family: 'Skia', 'Verdana', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    text-shadow: 1px 1px 2px black;
    text-transform: uppercase;
}
#trigger-button:hover {
    background: linear-gradient(to right,
                                #7A7A7A 0%,
                                #A8A8A8 20%,
                                #C0C0C0 28%,
                                #A8A8A8 36%,
                                #7A7A7A 100%);
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}
/* Media query for tablet devices */
@media (max-width: 1024px) and (min-width: 769px) {
    #trigger-button {
      font-size: 28px;
      padding: 12px 16px;
    }
    #button-container {
      padding: 25px 0;
    }
    #popup {
      padding: 15px; /* Adjusted padding for tablets */
    }
}
/* Media query for smartphone devices */
@media (max-width: 768px) {
    #trigger-button {
      font-size: 20px;
      padding: 8px 11px;
    }
    #button-container {
      padding: 17px 0;
    }
    #popup {
      padding: 10px;
    }
}

.red-text {
  color: #BF1900;
}
.grey-text {
  color: #6E6E70;
}
.blue-text {
  color: #00519C;
}
