@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;1,200&family=Roboto:wght@300&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/*** POPUPs */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s;
    display: none;
    opacity: 0;
}

.popup-container.toggle {
    display: flex;
    opacity: 1;
}

.popup {
    position: relative;;
    background-color: #fff;
    width: 30%;
    height: 50vh;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.popup-message-container {
    height: 80%;
    width: 100%;
    padding: 0 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

/** ERROR **/
.error-icon {
    width: 100px;
    height: 100px;
    background-color: rgb(252, 100, 100);
    border-radius: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-icon img {
    width: 60px;
    height: 60px;
}

.error-title {
    color: rgb(252, 100, 100);
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 25px;
}

.error-message {
    color: rgb(41, 41, 41);
    font-size: 20px;
}

/** COOKIES **/
.cookies-image {
    height: 60px;
    width: 60px;
    margin-bottom: 30px;
}

.cookies-title {
    color: rgb(43, 43, 43);
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 25px;
}

.cookies-message {
    color: rgb(41, 41, 41);
    font-size: 20px;
}

.popup-button {
    width: 100%;
    height: 20%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 10px 10px;
    font-size: 20px;
    cursor: pointer;
}

.popup-button-red {
    background-color: rgb(252, 100, 100);
}

.popup-button-gray {
    background-color: rgb(170, 170, 170);
}

/*** END POPUPs */