/* - - - - - COOKIE POP UP - - - - - */
.cookiePopUp {
    position: fixed;
    z-index: 1000000000;
    bottom: 1vw;
    right: 1vw;
    padding: 1vw;
    border-radius: 1Vw;
    font-size: 0.85rem;
    text-align: center;
    line-height: 28px;
    background-color: #444;
    color: #fff;
    font-family: Arial, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cookiePopUpClose {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #eb2629;
    color: #fff;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: black -1px 1px 15px;
    cursor: pointer;
}

.cookiePopUp a {
    color: gold;
}
    
/* - - - - - UTILITIES POP UP - - - - - */

.utilitiesPopUp {
    position: fixed;
    z-index: 1000000000;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 50% 75px;
    border-top-right-radius: 50% 75px;
    padding: 10px;
    padding-top: 30px;
    font-size: 14px;
    text-align: center;
    line-height: 18px;
    background-color: rgba(36,59,126, 0.97);
    color: #fff;
    font-family: Arial, sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.utilitiesPopUp h1{
    color: #fff;
}

.utilitiesPopUpBtnWrap {
    width: 100%;
    margin: 15px 0;
}

.utilitiesBtn {
    width: 60%;
    height: 50px;
    text-align: center;
    font-size: 20px;
    box-sizing: border-box;
    color: #fff;
    margin: 0 5px;
    border: none;
    border-radius: 12px;
    background: #e25c34;
    cursor: pointer;
    transition: all 300ms ease-in-out;
}

.utilitiesBtn:hover {
    background: #00c2a2;
}

.utilitiesBtn.no {
    width: 20%;
    background: none;
    border: 2px solid #e25c34;
}

.utilitiesBtn.no:hover {
    border: 2px solid #00c2a2;
    background: #00c2a2;
}
