@font-face {
    font-family: 'Diodrum Cyrillic';
    src: url('DiodrumCyrillic-Medium.eot');
    src: local('Diodrum Cyrillic Medium'), local('DiodrumCyrillic-Medium'),
        url('DiodrumCyrillic-Medium.eot?#iefix') format('embedded-opentype'),
        url('DiodrumCyrillic-Medium.woff2') format('woff2'),
        url('DiodrumCyrillic-Medium.woff') format('woff'),
        url('DiodrumCyrillic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Diodrum Cyrillic';
    src: url('DiodrumCyrillic-Bold.eot');
    src: local('Diodrum Cyrillic Bold'), local('DiodrumCyrillic-Bold'),
        url('DiodrumCyrillic-Bold.eot?#iefix') format('embedded-opentype'),
        url('DiodrumCyrillic-Bold.woff2') format('woff2'),
        url('DiodrumCyrillic-Bold.woff') format('woff'),
        url('DiodrumCyrillic-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Diodrum';
    src: url('DiodrumCyrillic-Extralight.eot');
    src: local('Diodrum Cyrillic Extralight'), local('DiodrumCyrillic-Extralight'),
        url('DiodrumCyrillic-Extralight.eot?#iefix') format('embedded-opentype'),
        url('DiodrumCyrillic-Extralight.woff2') format('woff2'),
        url('DiodrumCyrillic-Extralight.woff') format('woff'),
        url('DiodrumCyrillic-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Diodrum Cyrillic';
    src: url('DiodrumCyrillic-Semibold.eot');
    src: local('Diodrum Cyrillic Semibold'), local('DiodrumCyrillic-Semibold'),
        url('DiodrumCyrillic-Semibold.eot?#iefix') format('embedded-opentype'),
        url('DiodrumCyrillic-Semibold.woff2') format('woff2'),
        url('DiodrumCyrillic-Semibold.woff') format('woff'),
        url('DiodrumCyrillic-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Diodrum Cyrillic';
    src: url('DiodrumCyrillic-Regular.eot');
    src: local('Diodrum Cyrillic Regular'), local('DiodrumCyrillic-Regular'),
        url('DiodrumCyrillic-Regular.eot?#iefix') format('embedded-opentype'),
        url('DiodrumCyrillic-Regular.woff2') format('woff2'),
        url('DiodrumCyrillic-Regular.woff') format('woff'),
        url('DiodrumCyrillic-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Diodrum Cyrillic';
    src: url('DiodrumCyrillic-Light.eot');
    src: local('Diodrum Cyrillic Light'), local('DiodrumCyrillic-Light'),
        url('DiodrumCyrillic-Light.eot?#iefix') format('embedded-opentype'),
        url('DiodrumCyrillic-Light.woff2') format('woff2'),
        url('DiodrumCyrillic-Light.woff') format('woff'),
        url('DiodrumCyrillic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* .no-horizontal-scrollbar { */
/*   /\* Keeps the horizontal scrollbar hidden *\/ */
/*   overflow-x: hidden; */
/* } */

/* .no-scrollbars { */
/*   /\* Keeps both the horizontal and vertical  */
/*      scrollbars hidden *\/ */
/*   overflow: hidden; */
/* } */

#app-body {
    height: 100%;
}


.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  justify-content: center;
  align-items: center;
  z-index: 99999999999999999;
}

.overlay img {
  max-width: 100%;
  max-height: 100%;
}

.not-supported {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(1,1,1,0.75);
  backdrop-filter: blur(20px);
  justify-content: center;
  align-items: center;
  z-index: 99999999999999999;
}

.x-button {
    font-size: 20px;
    color: white;
    background-color: transparent;
    border: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}


.modal {
    width: 700px;
    background-color: white;
    border: 2px solid #0097a7;
    border-radius: 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.modal-header {
    background-color: #0097a7;
    color: white;
    padding: 10px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 16px;
    padding: 10px;
}

.modal-header .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.modal-content {
    padding: 20px;
    color: #0097a7;
    font-size: 16px;
}

/* Mobile responsive styling for modals */
@media (max-width: 768px) {
    .modal {
        width: 90vw;
        max-width: 500px;
        padding: 0;
    }

    .modal-header h2 {
        font-size: 14px;
        padding: 8px;
    }

    .modal-content {
        padding: 15px;
        font-size: 14px;
    }
}
