﻿.FloatingContainer {
    z-index: 999;
}

.FloatingContainer.stuck {
    position: fixed;
    top: 75%;
    width: 100%;
}

section, .FloatingContainer {
    line-height: 1.2;
}

.FloatingButtonWrapper {
    position: relative;
    max-width: 1440px;
    margin: auto;
}

section, .FloatingContainer {
    line-height: 1.2;
}

.FloatingButton {
    position: absolute;
    top: -50px;
    right: 2%;
    padding: 10px 60px;
    border-radius: 80px;
    background: #6bcde6;
    background: -moz-linear-gradient(-45deg, #6bcde6 0%, #1078b9 75%, #1078b9 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #6bcde6), color-stop(75%, #1078b9), color-stop(100%, #1078b9));
    background: -webkit-linear-gradient(
-45deg
, #6bcde6 0%, #1078b9 75%, #1078b9 100%);
    background: -o-linear-gradient(-45deg, #6bcde6 0%, #1078b9 75%, #1078b9 100%);
    background: -ms-linear-gradient(-45deg, #6bcde6 0%, #1078b9 75%, #1078b9 100%);
    background: linear-gradient(
135deg
, #6bcde6 0%, #1078b9 75%, #1078b9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6bcde6', endColorstr='#1078b9', GradientType=1 );
    -webkit-box-shadow: 10px 10px 41px -25px rgb(0 0 0 / 75%);
    -moz-box-shadow: 10px 10px 41px -25px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 41px -25px rgb(0 0 0 / 75%);
    -webkit-transition: box-shadow 0.2s ease-out;
    -moz-transition: box-shadow 0.2s ease-out;
    -o-transition: box-shadow 0.2s ease-out;
    transition: box-shadow 0.2s ease-out;
    color: #ffffff !important;
    font-size: 12px;
}

.FloatingButton .apply {
    font-size: 30px;
}

.FloatingButton strong {
    font-weight: 700;
}

.FloatingButton span {
    font-family: 'hightide';
    font-size: 32px;
}

.FloatingButton.align__center {
    text-align: center;
}

a, a:hover, a:active {
    text-decoration: none;
}
a, a:hover {
    color: #0067b1;
}

@media (max-width: 768px){
    .FloatingContainer {
        position: fixed;
        top: 90%;
        right: 2%;
    }

    .FloatingContainer.stuck {
        top: 80%;
    }
     
    .FloatingButton {
    padding: 10px 20px;
}

    .FloatingButton .apply {
    font-size: 20px;
}
}

