@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Rubik:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    line-height: 1;
    border: 0;
    font-weight: normal;
    outline: none;
    border-collapse: collapse;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Oswald", sans-serif;
    width: 100%;
    font-size: 18px;
    min-height: 100vh;
    color: #FFF;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.off {
    overflow: hidden;
}

.fribet {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: rgb(12, 12, 12);

}

.fribet-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    background: url(accets/img/bg.png) rgb(12, 12, 12) center / cover no-repeat;
    height: 100vh;
    max-width: 400px;
}

.fribet-sum {
    color: #FFF;
    text-align: center;
    font-size: 90px;
    font-weight: 700;
    letter-spacing: -2.7px;
    line-height: 90%;
    text-transform: uppercase;
    margin-top: 10px;
}

.fribet-box {
    position: relative;
    text-align: center;
}

.fribet-info {
    color: #FF6A13;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
    padding: 0;
}

.fribet-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fribet-info-wrap {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px);
    padding: 20px 10px 10px 10px;
    margin: 20px 10px 0 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.5);
    position: relative;
}

.fribet-subtitle {
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.fribet-content {
    color: #000;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    padding: 6px 12px;
    text-transform: uppercase;
    border-radius: 100px;
    background: #BDEE00;
    text-align: center;
    display: none;
}

.fribet-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 10px 0;
}

.fribet-info-text {
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
}

.fribet-info-text span {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.fribet-button {
    cursor: pointer;
    margin-top: 20px;
}

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

.close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .close-btn:hover {
        background: rgba(255, 0, 0, 0.8);
        transform: scale(1.1);
    }