.brige {
    height: 520px;
    width: 1300px;
}

.logo {
    font-family: "Alumni Sans Pinstripe", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.quote {
    font-family: "Alumni Sans Pinstripe", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.author {
    font-family: "Alumni Sans Pinstripe", sans-serif;
    font-weight: 400;
    font-style: italic;
    color: rgb(122, 122, 122);
}

.right-block {
    height: 230px;
    border-radius: 25px;
}

.background-brige {
    background-color: rgb(217, 217, 217, 0.60);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(215, 215, 215, 0.568);
}

.background-block {
    background-color: rgb(0, 0, 0);
}

/* .wrapper {
    background: rgba(255, 0, 0, 0.192);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(43, 43, 43, 0.568);
} */

.styled-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    /* Ширина и высота должны быть равны */
    height: 17px;
    /* для получения идеального круга */
    border: 3px solid #ccc;
    border-radius: 50%;
    /* 50% создает круг */
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    /* Важно: учитываем границу в размерах */
    display: inline-block;
    /* Для точного позиционирования */
    vertical-align: middle;
    margin-top: 3px;
}

/* Стиль при наведении */
.styled-checkbox:hover {
    border-color: #aaa;
}

/* Стиль когда чекбокс отмечен */
.styled-checkbox:checked {
    background-color: #00ff08;
    /* Зеленый цвет */
    border-color: #00ff08;
}

#quoteCarucel, #quoteAuthor {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
#quoteCarucel.fade {
    opacity: 0;
}
#quoteAuthor.fade {
    opacity: 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    padding: 20px;
    width: 80%;
    position: relative;
}

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}


.roboto-flex-some {
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
      "slnt" 0,
      "wdth" 100,
      "GRAD" 150,
      "XOPQ" 96,
      "XTRA" 468,
      "YOPQ" 79,
      "YTAS" 750,
      "YTDE" -203,
      "YTFI" 738,
      "YTLC" 514,
      "YTUC" 712;
  }