@import url('https://fonts.googleapis.com/css?family=Raleway:400,400i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800');

#add-to-chrome {
    height: 65px;
    padding-bottom: 15px;
}

.close {
    position: fixed;
    font-size: 28px;
    font-weight: normal;
    text-transform: uppercase;
    color: #fff !important;
    opacity: 1;
    font-family: inherit;
    line-height: 1;
    padding: 0 5px;
    top: 25px;
    right: 10px;
    text-decoration: none !important;
}

#confirm-modal {
    position: fixed;
    width: 500px;
    height: 200px;
    background: #fff;
    z-index: 100000;
    top: 50%;
    left: 50%;
    margin: -100px 0 0 -250px;
    border: solid 2px #ccc;
    display: none;
    font-family: Raleway;
}

#confirm-modal a {
    color: black!important;
}

#confirm-modal p {
    font-size: 23px;
    color: #010101;
    font-weight: normal;
    line-height: 29px;
    margin: 20px 0 0 20px;
    text-align: left;
}

#confirm-modal .actions {
    text-align: right;
    margin: 50px 20px 0 0;
}

#confirm-modal .blue {
    border: solid 1.7px rgba(24, 73, 198, 0.55) !important;
    background: #498cfe!important;
    color: #fff !important;
}

#confirm-modal .btn {
    background: #f3f2f2;
    border: 1px solid #acacac;
    font-size: 24px;
    margin-left: 20px;
    font-weight: normal;
    border-radius: 5px;
    padding: 5px 35px;
    text-decoration: none;
}

#loading-modal {
    max-width: 690px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 25px 0 rgba(0, 0, 0, .25);
    background-color: #fff;
    text-align: center;
    position: relative;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 100px;
    margin: auto;
    z-index: 10000;
}

#loading-modal h2 {
        letter-spacing: .15px;
        color: #324148;
        font-weight: 700;
        font-size: 27px;
    }

#loading-modal h2 .color-txt {
    color: #1a73e8;
}

#loading-modal div#wave {
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: 4px;
    background-color: #1a73e8;
    max-width: 401px;
    margin-top: 40px;
    padding: 40px;
}

#loading-modal div#wave .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 17px;
    background: #fff;
    animation: wave 1.3s linear infinite;
}

#loading-modal div#wave .dot:nth-child(2) {
    animation-delay: -1.1s;
}

#loading-modal div#wave .dot:nth-child(3) {
    animation-delay: -.9s;
}

#loading-modal div#wave .dot:nth-child(4) {
    animation-delay: -.5s;
}

#loading-modal div#wave .dot:nth-child(5) {
    animation-delay: -.3s;
}

@keyframes wave {

    0%,
    100%,
    60% {
        transform: initial
    }

    30% {
        transform: translateY(-15px)
    }
}

@keyframes fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

#confirm-modal-window, #loading-window {
	position: fixed;
	height: 100vh;
	width: 100vw;
    top: 0;
	background: rgba(0,0,0,.7);
    display: none;
    overflow: hidden!important;
    z-index: 500;
}