﻿@charset "utf-8";
/* CSS Document */


/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
@import url(http://fonts.googleapis.com/css?family=Exo:100,200,400);
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:700,400,300);

body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #fff;
    font-family: Arial;
    font-size: 12px;
}

.body {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: auto;
    /*background-image: url(img/page_bg.png);
	background-size: cover;*/
}


    .body .img_background {
        width: 100%;
    }

a {
    color: #fff;
}

.login {
    position: absolute;
    top: 56px;
    right: 310px;
    height: 177px;
    width: 225px;
    padding: 10px;
    z-index: 2;
}

    .login a {
        margin-left: 8px;
    }

    .login input[type=text] {
        width: 193px;
        height: 17px;
        background: #fff;
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 2px;
        color: #000;
        font-family: Arial;
        font-size: 14px;
        font-weight: 400;
        padding: 4px;
    }

    .login input::-webkit-input-placeholder {
        color: #6f6f6f;
    }

    .login input::-moz-placeholder {
        color: #6f6f6f;
    }
    /* firefox 19+ */
    .login input:-ms-input-placeholder {
        color: #6f6f6f;
    }
    /* ie */
    .login input:-moz-placeholder {
        color: #6f6f6f;
    }

    .login input[type=password] {
        width: 128px;
        height: 17px;
        background: #fff;
        border: 1px solid rgba(255,255,255,0.6);
        border-radius: 2px;
        color: #000;
        font-family: Arial;
        font-size: 14px;
        font-weight: 400;
        padding: 4px;
        margin-top: 10px;
    }

    .login input[type=checkbox] {
        margin: 10px 5px 0 0;
    }

    .login input[type=button] {
        width: 63px;
        height: 30px;
        background: #fcbf1b;
        border: 1px solid #fcbf1b;
        cursor: pointer;
        border-radius: 2px;
        color: #000;
        font-family: Arial;
        font-size: 14px;
        font-weight: 600;
        padding: 3px;
        margin-top: 10px;
    }

        .login input[type=button]:hover {
            opacity: 0.8;
        }

        .login input[type=button]:active {
            opacity: 0.6;
        }

    .login input[type=text]:focus {
        outline: none;
        border: 1px solid rgba(255,255,255,0.9);
    }

    .login input[type=password]:focus {
        outline: none;
        border: 1px solid rgba(255,255,255,0.9);
    }

    .login input[type=button]:focus {
        outline: none;
    }

.client_logo {
    padding-top: 15px;
    float: left;
}

    .client_logo img {
        width: 100%;
    }

.social_icon {
    width: 29%;
    float: right;
    padding-top: 26px;
}

    .social_icon a.first {
        margin-left: 0px;
    }

    .social_icon a {
        margin-right: 10px;
        display: inline-flex;
        width: auto;
    }

        .social_icon a.last {
            margin-right: 10px;
        }

::-webkit-input-placeholder {
    color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder {
    color: rgba(255,255,255,0.6);
}

@media screen and (max-width: 1300px) {
    .social_icon a.first {
        margin-left: 20px !important;
    }

    .client_logo {
        width: 65%;
    }

    .social_icon {
        width: 35%;
    }
}

@media screen and (max-width: 1150px) {
    .social_icon a.first {
        margin-left: 5px !important;
    }

    .social_icon a {
        margin-right: 2px !important;
    }

        .social_icon a.last {
            width: 0%;
        }
}

@media screen and (max-width: 900px) {
    .client_logo {
        width: 100%;
    }

    .social_icon {
        width: 100%;
    }

        .social_icon a.first {
            margin-left: 20px;
        }
}
/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 10px;
}
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #141313;
    }
