﻿body {
}

.loading-box {
    position: fixed;
    right: 71px;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    background: rgba(0, 0, 0, .6);
}

.gooey {
    position: relative;
    width: 142px;
    height: 40px
}

    .gooey .dot {
        position: absolute;
        width: 16px;
        height: 16px;
        top: 12px;
        left: 15px;
        background: #fff;
        border-radius: 50%;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation: dot 1.5s infinite;
        animation: dot 1.5s infinite
    }

    .gooey .dots {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        margin-top: 12px;
        margin-left: 31px;
        -webkit-animation: dots 1.5s infinite;
        animation: dots 1.5s infinite
    }

        .gooey .dots span {
            display: block;
            float: left;
            width: 16px;
            height: 16px;
            margin-left: 16px;
            background: #fff;
            border-radius: 50%
        }


@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px)
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px)
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px)
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px)
    }
}

@-webkit-keyframes move {
    from {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }

    to {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
}

@keyframes move {
    from {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }

    to {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
}
.flex-box {
    display: -webkit-box;
    display: flex
}

float_modal {
    z-index: 111;
    position: fixed;
    right: 71px;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: none !important
}

.float_modal .background {
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.float_modal .float_modal_content {
    padding: 20px 40px;
    background-color: #fff;
    position: fixed;
    right: 71px;
    top: 20%;
    width: 390px;
    max-width: 100%;
    z-index: 2;
    box-sizing: border-box
}

.float_modal .close {
    position: absolute;
    top: 26px;
    right: 15px
}

    .float_modal .close:before, .float_modal .close:after {
        content: '';
        width: 20px;
        height: 3px;
        background-color: #000;
        position: relative;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        display: block
    }

    .float_modal .close:before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 2.5px
    }

.float_modal .title {
    color: #897773;
    display: block;
    font-size: 24px;
    text-align: center;
    text-transform: uppercase
}

.float_modal .field {
    display: block;
    border: 0;
    border-bottom: solid 1px #897773;
    width: 100%;
    margin: 20px 0;
    padding: 5px 0;
    outline: none
}

.float_modal label {
    display: block;
    font-size: 14px;
    margin: 20px 0
}

.float_modal .button {
    background-color: #897773 !important;
    text-align: center;
    display: table;
    color: #fff;
    margin: 0 auto 10px
}

.form .button {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    padding: 7px 26px;
    background: #fff;
    display: block;
}

@media screen and (max-width: 400px) {
    .float_modal .float_modal_content {
        width: 100%
    }
}

.flex-box {
    display: -webkit-box;
    display: flex
}

    .flex-box.justify-space-between {
        -webkit-box-pack: justify;
        justify-content: space-between
    }

    .flex-box.justify-space-around {
        justify-content: space-around
    }

    .flex-box.justify-flex-end {
        -webkit-box-pack: end;
        justify-content: flex-end
    }

    .flex-box.justify-center {
        -webkit-box-pack: center;
        justify-content: center
    }

    .flex-box.justify-end {
        -webkit-box-pack: end;
        justify-content: flex-end
    }

    .flex-box.align-center {
        -webkit-box-align: center;
        align-items: center
    }

    .flex-box.align-start {
        -webkit-box-align: start;
        align-items: flex-start
    }

    .flex-box.direction-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column
    }

    .flex-box.wrap {
        flex-wrap: wrap
    }

    .flex-box .flex-grow-0 {
        -webkit-box-flex: 0;
        flex-grow: 0
    }

    .flex-box .flex-grow-1 {
        -webkit-box-flex: 1;
        flex-grow: 1
    }

    .flex-box .flex-shrink-0 {
        flex-shrink: 0
    }

    .flex-box .flex-shrink-1 {
        flex-shrink: 1
    }

    .flex-box .self-flex-start {
        align-self: flex-start
    }