@font-face {
    font-family: 'proximanova-regular';
    src: url('../fonts/proximanova-regular-webfont.eot');
    src: url('../fonts/proximanova-regular-webfont.woff2') format('woff2'), url('../fonts/proximanova-regular-webfont.woff') format('woff'), url('../fonts/proximanova-regular-webfont.ttf') format('truetype'), url('../fonts/proximanova-regular-webfont.svg') format('svg'), url('../fonts/proximanova-regular-webfont.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Proxima Nova Rg';
    src: url('../fonts/ProximaNova-Bold.eot');
    src: url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Bold.woff2') format('woff2'), url('../fonts/ProximaNova-Bold.woff') format('woff'), url('../fonts/ProximaNova-Bold.ttf') format('truetype'), url('../fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima extra bold';
    src: url('../fonts/proxima-nova-extrabold.woff') format('woff2'), url('../fonts/proxima-nova-extrabold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova Th';
    src: url('../fonts/ProximaNova-Thin.woff2') format('woff2'), url('../fonts/ProximaNova-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

.font-bold {
    font-family: 'Proxima extra bold';
    font-weight: bold;
}

.font-lighter {
    font-family: 'Proxima Nova Th';
    font-weight: lighter;
}

.floating-chat {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: fixed;
    bottom: 40px;
    right: 15px;
    width: 45px;
    height: 45px;
    transform: translateY(70px);
    transition: all 250ms ease-out;
    border-radius: 50%;
    opacity: 0;
    background: #0b2d5d;
    z-index: 1;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.floating-chat.enter:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    opacity: 1;
}

.floating-chat.enter {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 2px rgba(0, 0, 0, 0.14);
}

.floating-chat.expand {
    width: 25%;
   /* max-height: 40%;*/
    height: 300px;
    border-radius: 20px;
    cursor: auto;
    opacity: 1;
}

.floating-chat :focus {
    outline: 0;
    box-shadow: 0 0 1pt 1pt #006cfaaa;
}

.floating-chat button {
    background: #0b2d5d;
    border: 0;
    color: white;
    text-transform: uppercase;
    border-radius: 25px;
    /* border-radius: 3px; */
    padding: 8px 10px;
    cursor: pointer;
}

.floating-chat .chat {
    display: flex;
    flex-direction: column;
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    transition: all 250ms ease-out;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

    .floating-chat .chat.enter {
        opacity: 1;
        border-radius: 20px !important;
        margin: 0px;
        width: auto;
        height: auto;
    }

    .floating-chat .chat .header {
        flex-shrink: 0;
        padding-bottom: 10px;
        display: flex;
        border-radius: 20px 20px 0px 0px;
        padding: 20px;
        background: #0b2d5d;
    }

.floating-chat .chat .header .title {
    flex-grow: 1;
    flex-shrink: 1;
    padding: 7px 5px;
    font-size: 16px;
}

.floating-chat .chat .header button {
    flex-shrink: 0;
}

.floating-chat .chat .messages {
padding: 10px;
margin: 0;
list-style: none;
overflow-y: scroll;
overflow-x: hidden;
flex-grow: 1;
/* border-radius: 4px; */
background: #fcfcfc;
}

.floating-chat .chat .messages::-webkit-scrollbar {
width: 5px;
}

.floating-chat .chat .messages::-webkit-scrollbar-track {
border-radius: 5px;
background-color: #f2f2f2;
}

.floating-chat .chat .messages::-webkit-scrollbar-thumb {
border-radius: 5px;
background-color: #ddd;
}

.floating-chat .chat .messages li {
position: relative;
clear: both;
display: inline-block;
padding: 14px;
margin: 0 0 20px 0;
font-size: 12px;
border-radius: 10px;
background-color: #006cfa;
word-wrap: break-word;
max-width: 81%;
}

.floating-chat .chat .messages li:before {
    position: absolute;
    top: 0;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    content: '';
    background-size: cover;
}

.floating-chat .chat .messages li:after {
    position: absolute;
    top: 10px;
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #006cfa;
}

.floating-chat .chat .messages li.self:after {
    position: absolute;
    top: 10px;
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #f2f2f2;
}

.floating-chat .chat .messages li.other {
    animation: show-chat-odd 0.15s 1 ease-in;
    -moz-animation: show-chat-odd 0.15s 1 ease-in;
    -webkit-animation: show-chat-odd 0.15s 1 ease-in;
    float: right;
    margin-right: 45px;
    color: #fff;
}

    .floating-chat .chat .messages li.other:before {
        right: -45px;
        background-image: url(https://github.com/ortichon.png);
    }

    .floating-chat .chat .messages li.other:after {
        border-right: 10px solid transparent;
        right: -10px;
    }

.floating-chat .chat .messages li.self {
    animation: show-chat-even 0.15s 1 ease-in;
    -moz-animation: show-chat-even 0.15s 1 ease-in;
    -webkit-animation: show-chat-even 0.15s 1 ease-in;
    float: left;
    margin-left: 45px;
    background-color: #f2f2f2;
    color: #0b2d5d;
}

    .floating-chat .chat .messages li.self:before {
        left: -45px;
        background-image: url('../../assets/img/img2.png');
    }

    .floating-chat .chat .messages li.self:after {
        border-left: 10px solid transparent;
        left: -10px;
    }

.floating-chat .chat .footer {
flex-shrink: 0;
display: flex;
padding-top: 10px;
max-height: 90px;
padding: 20px;
border-radius: 0px 0px 20px 20px;
background: #fafafb;
}

.floating-chat .chat .footer .text-box {
border-radius: 3px;
background: rgb(242 245 254);
min-height: 100%;
border: 1px solid #9bc4fc;
width: 100%;
margin-right: 5px;
color: #012970;
overflow-y: auto;
padding: 2px 5px;
}

.floating-chat .chat .footer .text-box::-webkit-scrollbar {
    width: 5px;
}

.floating-chat .chat .footer .text-box::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #f2f2f2;
}

.floating-chat .chat .footer .text-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #f2f2f2;
}

.button-animate {
    animation: pulse 1s infinite;
}
.image_mask {
    /* SVG Image To Use As The Mask */
    /*  -webkit-mask-image: url(/logo.png);
    mask-image: url(/logo.png);*/
    /* Should The Mask Be Tiled & Repeated Or Not?  */
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    /* What should the position of the mask be over the underlying
    image */
    -webkit-mask-position: center;
    mask-position: center;
    /* How much area does the mask cover */
    -webkit-mask-size: 100%;
    mask-size: 100%;
    /* Some Usual CSS */
    width: 100% !important;
    height: 400px;
    overflow: hidden;
    background: #fff;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #bab5c3;
    background-image: url("../images/suthloader.gif");
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
}
.button-animate {
    animation: pulse 1s infinite;
    background-color: #1e355c !important;
}
@keyframes pulse {
    0% {
        box-shadow: 0px 0px 3px 1px #0477d2;
    }

    100% {
        box-shadow: 0px 0px 3px 3px #0477d2;
    }
}

.login-icon { margin: 5px auto 20px auto; padding: 0; list-style: none; display: table; }
.login-icon li { width: 50px; height: 50px; float: left; cursor: pointer; margin: 5px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; text-align: center; -webkit-box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2); box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2); transition: .2s; }
.login-icon li img { margin-top: 7px; }
.login-icon li:hover { -webkit-transform: scale(1.05); transform: scale(1.05); }
.fb-bg { background-color: #3a5a97; }
.gp-bg, .gh-bg { background-color: #db463d; }
.tw-bg { background-color: #25a4ef; }
.linkin-bg { background-color: #007bb5; }
.github-bg { background-color: #1c71b5; }
.ap-bg { background-color: #2e2e2e; }
.sl-bg { background-color: #f1f1f1; }
.orc { width: 40px; height: 40px; text-align: center; line-height: 40px; font-size: 14px; font-weight: 600; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; -webkit-box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2); box-shadow: 0px 0px 1px 1px rgba(0,0,0,0.2); transition: .2s; margin: auto; margin-top: -35px; background-color: #fff; }
.acc-text { text-align: center; color: #5f5f5f; font-size: 16px; }
.acc-text a { color: #4261a2; text-decoration: none; font-weight: 500; }
.custom-lg-li {
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}

.arrow {
    font-size: 28px;
}