.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}
.clearfix { display: inline-block; }
/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */
.box_container{
    width: 1170px;
    position: relative;
    margin:0 auto;
}
body{
    font-family: 'Quicksand', Arial, sans-serif;
}
header{
    background: #222222;
}
menu li a {
    display: inline-block;
    color: #fff;
    position: relative;
}
menu li {
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
.logo img {
    margin: 20px 0;
}
menu ul {
    margin: 10px 0 0 0;
}
menu ul li a:hover{
    color: #ffffff;
    transition: 0.5s all ease;
    text-decoration: none;
}
menu ul li a:hover::before{
    top:-22px;
    opacity: 1;
}
menu ul li a:before{
    content: '\f0d7';
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    top:-30px;
    font-size: 26px;
    left: 50%;
    opacity: 0;
    transition: 0.5s all ease;
    animation: rotate_icon 2s infinite;
}
@keyframes rotate_icon {
    0% { transform: rotateY(0deg) }
    50% { transform: rotateY(180deg) }
    100% { transform: rotateY(0deg) }
}
@-webkit-keyframes rotate_icon {
    0% { transform: rotateY(0deg) }
    50% { transform: rotateY(180deg) }
    100% { transform: rotateY(0deg) }
}
footer{
    background: #222222;
    color: #fff;
    margin:10px 0 0 0;
}
footer p{
    margin:10px 0;
}
content{
    min-height: calc(100vh - 134px);
}
.title_page{
    text-align: center;
    padding:30px 0;
    margin:0;
    font-size: 30px;
}
.content_form{
    margin:0 auto;
}
#loading_box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.20);
    text-align: center;
}
#loading_box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.box_custom h3 {
    margin: 25px 0 10px 0;
    text-align: center;
    color: #008fb5;
}
.title_order{
    position: relative;
    margin: 20px 0 10px 0;
    text-align: center;
}
.title_order .line_border{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background: #008fb5;
    z-index: 1;
}
.title_order p {
    color: #008fb5;
    text-align: center;
    font-size: 20px;
    display: inline-block;
    position: relative;
    padding:0 10px;
    margin:0 auto;
    z-index: 2;
    background: #ffffff;
}
.text_right{
    text-align: right;
}
.text_center{
    text-align: center;
}
.text_left{
    text-align: left;
}
.text_red{
    color: #ff0000;
}
.right_footer{
    text-align: right;
}
.icon_menu_mobile,.menu_mobile{
    display: none;
}
.icon_menu_mobile {
    position: absolute;
    top: 13px;
    right: 15px;
}
.menu_mobile{
    position: absolute;
    left:-285px;
    top:0;
    background: #ffffff;
    z-index:100;
    height: 100vh;
    width: 280px;
    -webkit-box-shadow: 6px 0px 5px -6px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 0px 5px -6px rgba(0,0,0,0.75);
    box-shadow: 6px 0px 5px -6px rgba(0,0,0,0.75);
    transition: 0.5s all ease;
}
.show_menu_mobile{
    left: 0;
}
.menu_mobile li{
    list-style: none;
}
.menu_mobile ul {
    padding:0;
}
.icon_menu_mobile img{
    width: 40px;
}
.menu_mobile li a{
    padding:10px 15px;
    display: block;
    color: #333;
    border-bottom: 1px solid #dedede;
}
@media only screen and (max-width: 1170px){
    .box_container{
        width: 100%;
    }
}
@media only screen and (max-width: 768px){
    menu li{
        margin:0 7px;
    }
    content{
        min-height: calc(100vh - 113px);
    }
    menu ul{
        padding:0;
    }
    .left_footer{
        display: none;
    }
    .right_footer{
        text-align: center;
    }
    .logo_mobile img{
        margin:0;
    }
    .logo_mobile{
        margin:10px 0;
    }
    menu ul{
        margin:0;
    }
}
@media only screen and (max-width: 480px){
    .icon_menu_mobile,.menu_mobile{
        display: block;
    }

    .icon_menu_mobile img{
        filter: brightness(0) invert(1);
    }
    menu{
        display: none;
    }
}
@media only screen and (max-width: 320px){
    .logo_mobile {
        width: 75px;
        height: 40px;
        box-sizing: border-box;
        flex: none;
        overflow: hidden;
    }
}