.gc-loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gc-loader-circle, .gc-loader-circle-simple {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    overflow: hidden;
}
.gc-loader-circle {
    animation: 10s gcLoaderRotate infinite;
}
.gc-loader-circle-simple {
    animation: 1s gcLoaderRotate infinite;
    position: absolute;
    border-top: 10px solid #8c0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.gc-loader-radius {
    position: absolute;
    height: 50px;
    width: 4px;
    left: 22.5px;
}
.gc-loader-radius .gc-loader-hand {
    height: 14px;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.gc-loader-radius-1 {
    transform: rotate(0deg);
}
.gc-loader-radius-1 > .gc-loader-hand {
    background-color: #232323;
    animation-name: gcLoaderPulse1;
    animation-duration: 3s;
}
.gc-loader-radius-2 {
    transform: rotate(45deg);
}
.gc-loader-radius-2 > .gc-loader-hand {
    background-color: #343434;
    animation-name: gcLoaderPulse2;
    animation-duration: 3s;
}
.gc-loader-radius-3 {
    transform: rotate(90deg);
}
.gc-loader-radius-3 > .gc-loader-hand {
    background-color: #454545;
    animation-name: gcLoaderPulse3;
    animation-duration: 3s;
}
.gc-loader-radius-4 {
    transform: rotate(135deg);
}
.gc-loader-radius-4 > .gc-loader-hand {
    background-color: #565656;
    animation-name: gcLoaderPulse4;
    animation-duration: 3s;
}
.gc-loader-radius-5 {
    transform: rotate(180deg);
}
.gc-loader-radius-5 > .gc-loader-hand {
    background-color: #676767;
    animation-name: gcLoaderPulse5;
    animation-duration: 3s;
}
.gc-loader-radius-6 {
    transform: rotate(225deg);
}
.gc-loader-radius-6 > .gc-loader-hand {
    background-color: #787878;
    animation-name: gcLoaderPulse6;
    animation-duration: 3s;
}
.gc-loader-radius-7 {
    transform: rotate(270deg);
}
.gc-loader-radius-7 > .gc-loader-hand {
    background-color: #898989;
    animation-name: gcLoaderPulse7;
    animation-duration: 3s;
}
.gc-loader-radius-8 {
    transform: rotate(315deg);
}
.gc-loader-radius-8 > .gc-loader-hand {
    background-color: #9a9a9a;
    animation-name: gcLoaderPulse8;
    animation-duration: 3s;
}

@keyframes gcLoaderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes gcLoaderPulse1 {
    to {
        background-color: #686868;
    }
}
@keyframes gcLoaderPulse2 {
    to {
        background-color: #797979;
    }
}
@keyframes gcLoaderPulse3 {
    to {
        background-color: #8a8a8a;
    }
}
@keyframes gcLoaderPulse4 {
    to {
        background-color: #9b9b9b;
    }
}
@keyframes gcLoaderPulse5 {
    to {
        background-color: #acacac;
    }
}
@keyframes gcLoaderPulse6 {
    to {
        background-color: #bdbdbd;
    }
}
@keyframes gcLoaderPulse7 {
    to {
        background-color: #cecece;
    }
}
@keyframes gcLoaderPulse8 {
    to {
        background-color: #dfdfdf;
    }
}
.gc-modal-container {
    color: #6f6f6f;
    width: 100vw;
    height: 100vh;
    z-index: 1000000;
    position: fixed;
    top: 0;
    left: 0;
    overflow: scroll;
}
.gc-modal-container.closing {
    transition: 0.4s;
    transition-property: opacity;
    opacity: 0;
}
.gc-modal-slide {
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation: gcModalSlideIn 0.5s forwards;
    position: absolute;
    top: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}
.closing .gc-modal-slide {
    animation: gcModalSlideOut 0.5s forwards;
}
.gc-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
}
@media screen and (min-width: 600px) {
    .gc-modal-box {
        width: 600px;
        border-radius: 1rem;
        -webkit-box-shadow: 0px 8px 24px 0px #4d4d4d;
        -moz-box-shadow: 0px 8px 24px 0px #4d4d4d;
        box-shadow: 0px 8px 24px 0px #4d4d4d;
    }
}
@media screen and (max-width: 600px) {
    .gc-modal-box {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }

    .register-modal-box{
        height: auto !important;
        text-align: center;
    }
}
.gc-modal-close {
    user-select: none;
    font-weight: 700;
    border: 0 solid transparent;
    border-radius: 50%;
    background-color: transparent;
    font-size: 1.8em;
    height: 1.5rem;
    line-height: 0.5rem;
    margin: 2rem 1rem 0 0;
    transition-duration: 0.4s;
    transition-property: transform, color;
}
.gc-modal-close:active {
    transform: scale(0.8);
    color: #c6c6c6;
}
.gc-modal-header {
    display: flex;
    flex-direction: row-reverse;
    min-height: 35px;
}
.gc-modal-heading {
    font-size: 2.2rem;
    font-weight: 700 !important;
}
.gc-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1em;
}

.gc-modal-body > #scrollUp {
    display: none;
}

.gc-modal-body > * {
    margin: 1.5rem;
}
.gc-modal-button {
    padding: 0.4rem 0;
    font-size: 1.4rem;
    border-radius: 1rem;
    min-width: 16em;
    transition-duration: 0.4s;
    transition-property: color, background-color;
}
.gc-modal-button.btn-grey {
    border: 2px solid #222;
    color: #222;
    background-color: #fff;
}
.gc-modal-button.btn-grey:focus, .gc-modal-button.btn-grey:active {
    color: #222;
    background-color: #c6c6c6;
}
.gc-modal-button.register-modal-btn{
    color: #ff8104;
    border: 2px solid #ff8104;
}
.gc-modal-button.btn-green {
    border: 2px solid #8c0;
    color: #fff;
    background-color: #8c0;
}
.gc-modal-button.btn-green:focus, .gc-modal-button.btn-green:active {
    color: #8c0;
    background-color: #fff;
}
.gc-modal-main {
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.gc-modal-main.gc-modal-center {
    align-items: center;
}
.gc-modal-main.gc-modal-left {
    align-items: flex-start;
}

@keyframes gcModalSlideIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.35;
    }
}
@keyframes gcModalSlideOut {
    from {
        opacity: 0.35;
    }
    to {
        opacity: 0;
    }
}

/*# sourceMappingURL=style.css.map */
