/* Minification failed. Returning unminified contents.
(555,56): run-time error CSS1046: Expect comma, found '156'
(555,64): run-time error CSS1046: Expect comma, found '/'
 */
@import url('https://fonts.googleapis.com/css?family=Roboto:100,400,500,600,700|Roboto+Condensed:300,400,500,700|Changa|Kaushan+Script|Fredoka+One|Permanent+Marker|Anton');

.small-top-bar {
    width: 100%;
    background-color: #f91a15;
    color: #fff;
    padding: 5px 20px;
    text-align: right;
    font-family: 'Roboto',sans-serif;
    font-size: 12px;
    z-index: 100;
    position:relative;
}

.top-bar {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    margin-right: -15px;
    margin-left: -15px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.10);
    display:flex;
}

    .top-bar > .logo-context {
        background-color: #fff;
        width: 350px;
        text-align:center;
        padding-top:20px;
    }

    .top-bar > .logo-context > a > img {
        height: 40px;
    }

    .top-bar > .nav-context {
        flex:auto;
        text-align:center;
    }

        .top-bar > .nav-context > .nav-item {
            text-decoration: none;
            outline: none;
            font-size: 13px;
            display: inline-block;
            margin: 0px;
            box-sizing: unset;
            position: relative;
        }

            .top-bar > .nav-context > .nav-item > a {
                color: #000;
                font-size: 15px;
                font-family: 'Roboto', sans-serif;
                font-weight: 500;
                display: inline-block;
                padding: 30px 10px;
                outline: none;
                text-decoration: none;
            }
                .top-bar > .nav-context > .nav-item > a:hover {
                    color: #fff;
                    background-color: #f91a15;
                }

            .top-bar > .nav-context > .nav-item .main {
                background-color: #fff;
                position: absolute;
                width: 250px;
                right: 0px;
                top: 80px;
                height: 0px;
                overflow: hidden;
                transition: all 700ms;
                box-shadow: -3px 5px 10px rgba(0, 0, 0, 0.06);
            }

            .top-bar > .nav-context > .nav-item:hover .main {
                transition: all 700ms;
                height: 100px;
                padding-top: 20px;
                z-index: 1;
            }
            .top-bar > .nav-context > .nav-item:hover .main-100 {
                height: 100px;
            }
            .top-bar > .nav-context > .nav-item:hover .main-150 {
                height: 150px;
            }
            .top-bar > .nav-context > .nav-item:hover .main-200 {
                height: 200px;
            }

            .top-bar > .nav-context > .nav-item .main a {
                width: 100%;
                display: inline-block;
                font-size: 13px;
                font-family: 'Roboto', sans-serif;
                color: #ff0000;
                text-align: right;
                padding: 5px 10px;
                font-weight: 500;
                text-decoration: none;
            }

                .top-bar > .nav-context > .nav-item .main a:hover {
                    background-color: #f91a15;
                    color: #fff;
                    box-shadow: unset;
                }

    .top-bar > .contact-context {
        width: 200px;
        text-align: center;
        padding-top: 22px;
    }
        .top-bar > .contact-context > .contact-body {
            padding: 7px 10px;
            background-color: #111;
            color: #ffffff;
            font-size: 15px;
            font-weight: bold;
            font-family: 'Changa',sans-serif;
            border-radius: 5px;
            width: 180px;
            margin-left: auto;
            margin-right: auto;
        }
            .top-bar > .contact-context > .contact-body > i {
                font-size: 12px;
                position: relative;
                top: -1px;
                background-color: #fff;
                color: #000;
                height: 20px;
                width: 20px;
                padding: 4px 0px;
                text-align: center;
                border-radius: 50%;
            }

@-webkit-keyframes animation {
    0% {
        content: url("/Icons/call.png");
    }

    25% {
        content: url("/Icons/call1.png");
    }

    50% {
        content: url("/Icons/call2.png");
    }

    75% {
        content: url("/Icons/call3.png");
    }
}

@-moz-keyframes animation {
    0% {
        content: url("/Icons/call.png");
    }

    25% {
        content: url("/Icons/call1.png");
    }

    50% {
        content: url("/Icons/call2.png");
    }

    75% {
        content: url("/Icons/call3.png");
    }
}

@keyframes animation {
    0% {
        content: url("/Icons/call.png");
    }

    25% {
        content: url("/Icons/call1.png");
    }

    50% {
        content: url("/Icons/call2.png");
    }

    75% {
        content: url("/Icons/call3.png");
    }
}
.top-bar .logout {
    color: #ff4141;
    font-weight: bold;
}

.top-bar > .small-menu-icon {
    display: none;
    text-align: right;
    cursor: pointer;
    padding-right: 10px;
    padding-top: 10px;
}
    .top-bar > .small-menu-icon > i {
        border: 1px solid #ddd;
        padding: 5px;
        font-size: 16px;
        color: #ea0000;
    }

.small-menu-context {
    position: fixed;
    top: 50px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: #fff;
    z-index: 1000;
    display: none;
}
            .small-menu-context > .nav-item {
                text-align:center
            }
            .small-menu-context > .nav-item > a {
                display:block;
                padding:5px 10px;
                color:#f91a15;
                text-decoration:none;
                font-size:20px;
                font-weight:bold;
            }
            .small-menu-context > .nav-item > a:hover {
                background-color:#f91a15;
                color:#fff;
            }
                .small-menu-context > .nav-item > .main {
                    position: relative;
                    height: 0px;
                    overflow: hidden;
                    transition: all 700ms;
                    background-color: #eee;
                }
                .small-menu-context > .nav-item:hover .main {
                    transition: all 700ms;
                    height: 60px;
                    z-index: 1;
                }
                .small-menu-context > .nav-item:hover .main-100 {
                    height: 100px;
                }
                .small-menu-context > .nav-item:hover .main-150 {
                    height: 150px;
                }
                .small-menu-context > .nav-item:hover .main-200 {
                    height: 200px;
                }
                .small-menu-context > .nav-item > .main > a {
                    display: block;
                    padding: 5px 10px;
                    color: #f91a15;
                    font-size: 12px;
                    text-decoration: none;
                    text-align: center;
                    font-size: 14px;
                    font-weight: bold;
                }
            .small-menu-context > .nav-item > .main > a:hover {
                background-color:#f91a15;
                color:#fff;
            }



.custom-alert {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    height:100%;
    width:100%;
    background-color: rgba(0, 0, 0, 0.20);
    z-index:10000;
    display:table;
}
.custom-alert > .alert-context {
    display:table-cell;
    vertical-align:middle;
    text-align: center;
    cursor:pointer;
}

    .custom-alert > .alert-context > .success {
        background-color: #2dc748;
        color: #fff;
        text-transform: uppercase;
        font-size:20px;
        font-weight: 500;
        font-family: 'Roboto', sans-serif;
        padding: 30px 5px;
        width: 300px;
        border-radius:3px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 3px 3px 7px rgba(60, 60, 60, 0.50);
    }
    
    .custom-alert > .alert-context > .error {
        background-color: #ff0000;
        color: #fff;
        text-transform: uppercase;
        font-size:20px;
        font-weight: 500;
        font-family: 'Roboto', sans-serif;
        padding: 30px 5px;
        width: 300px;
        border-radius:3px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 3px 3px 7px rgba(60, 60, 60, 0.50);
    }
.alert-context > .btn-hide{

}

.alert-hide {
    transition: all 0.5s;
    opacity: 0;
}

.btn-small {
    padding: 2px 5px;
    font-size: 12px;
}

    .btn-small i {
        font-size: 12px;
    }

.no-padding {
    padding: 0px !important;
}

.render-body {
    min-height: 700px;
}

.footer-simple {
    background-color: #005259;
    font-family: 'Roboto', sans-serif;
    position: relative;
}
    .footer-simple .menu-context {
        padding: 10px 100px;
    }

        .footer-simple .menu-context > .item-body {
            position: relative;
            float: left;
            width: 25%;
            padding: 10px;
            font-size: 14px;
            color: #a0a0a0;
        }
            .footer-simple .menu-context > .item-body > .logo {
                padding:20px 0px;
            }
            .footer-simple .menu-context > .item-body > .logo > img {
                height:35px;
            }
            .footer-simple .menu-context > .item-body > .about {
                font-size: 15px;
                color: #ddd;
                font-family: 'Roboto', sans-serif;
            }

            .footer-simple .menu-context > .item-body > .title {
                font-size: 20px;
                color: #ef6421;
                font-weight: bold;
                font-family: 'Roboto Condensed', sans-serif;
            }
                .footer-simple .menu-context > .item-body > .title > span {
                    color: #fff;
                }

            .footer-simple .menu-context > .item-body > a {
                display: block;
                font-weight: 400;
                padding: 3px 0px;
                color: #fcfcfc;
            }

                .footer-simple .menu-context > .item-body > a:hover {
                    color: #ff663e;
                    text-decoration: none;
                }

            .footer-simple .menu-context > .item-body img {
                height:30px;
            }
            .footer-simple .menu-context > .barvida {
                color:#a7a7a7;
                font-size:12px;
            }
            .footer-simple .menu-context > .barvida img{
                height:40px;
            }

        .footer-simple .menu-context > .item-body > .social-media {
            color: #fbc906;
            clear: both;
            padding-top:5px;
        }
            .footer-simple .menu-context > .item-body > .social-media > .title {
                font-size: 18px;
                color: #e4ba04;
                font-weight: bold;
                font-family: 'Roboto Condensed', sans-serif;
            }

            .footer-simple .menu-context > .item-body > .social-media a {
                color: #fff;
                display: inline-block;
                height: 30px;
                width: 30px;
                background-color: #0054a6;
                padding-top: 7px;
                text-align: center;
            }
                .footer-simple .menu-context > .item-body > .social-media a i {
                    font-size: 16px;
                }

                .footer-simple .menu-context > .item-body > .social-media a:hover {
                    text-decoration: none;
                }

                    .footer-simple .menu-context > .item-body > .social-media a:hover i {
                        transform: rotateY(360deg);
                        transition: 1000ms;
                    }

                    .footer-simple .menu-context > .item-body > .social-media a:hover img {
                        transform: rotateY(360deg);
                        transition: 1000ms;
                    }
                .footer-simple .menu-context > .item-body > .social-media a:focus {
                    text-decoration: none;
                }
        .footer-simple .menu-context > .ssl-icon {
            position: relative;
            float: left;
            width: 75%;
            margin-top: 20px;
            padding-top: 10px;
            border-top: 1px solid #5b5b5b;
        }
        .footer-simple .menu-context > .ssl-icon > img {
            height:30px;
        }
            .footer-simple .menu-context > .ssl-icon > .ssl-logo {
                font-size:12px;
                color:#fff;
                display:inline-block;
            }
                .footer-simple .menu-context > .ssl-icon > .ssl-logo > img {
                    height: 20px;
                }
        .footer-simple .menu-context > .google-rate {
            position: relative;
            float: left;
            width: 25%;
            padding: 5px 0px;
            padding-left: 10px;
            padding-bottom: 10px;
        }
            .footer-simple .menu-context > .google-rate > .body {
                background-color: #fff;
                padding: 10px;
                width: 100%;
                cursor:pointer;
            }
            .footer-simple .menu-context > .google-rate > .body > .image-context {
                display:table-cell;
                width:50px;
                vertical-align:middle;
            }
            .footer-simple .menu-context > .google-rate > .body > .image-context > img {
                width:100%;
            }
                .footer-simple .menu-context > .google-rate > .body > .text-context {
                    display: table-cell;
                    vertical-align:middle;
                    padding:0px 10px;
                    font-family: 'Roboto', sans-serif;
                    font-size: 16px;
                    font-weight: bold;
                }

    .footer-simple > .copyright {
        color: #fff;
        font-size: 11px;
        padding: 20px 50px;
        background-color: #003135;
    }
        .footer-simple > .copyright > .item {
            width: 100%;
            position: relative;
            float: left;
        }
            .footer-simple > .copyright > .item > a {
                float: right;
                color: #fff;
            }

                .footer-simple > .copyright > .item > a > span {
                    float: right;
                    color: #fbc906;
                }

.none {
    display: none;
}

.right-tool-tip {
    position:fixed;
    right:0;
    height:125px;
    top:50%;
    margin-top:-62px;
    width:35px;
}

    .right-tool-tip > .tool-tip-item {
        position: relative;
        left: 0;
        width: 115px;
        height: 35px;
        padding:3px;
        background-color: #ff0000;
        color: #fff;
        margin-top: 1px;
        transition: 0.5s;
        cursor: pointer;
    }
        .right-tool-tip > .tool-tip-item:hover {
            left: -80px;
            transition: 0.5s;
            background: linear-gradient(to top, rgb(28 156 203 / 0.1),#ff0000);
        }
.right-tool-tip > .tool-tip-item > a {
    color:#fff;
    text-decoration:unset;
    display:block;
}

    .right-tool-tip > .tool-tip-item > a > .title {
        display: inline-block;
        padding:5px 0px;
    }
    .right-tool-tip > .tool-tip-item > a > .icon-context {
        display: inline-block;
        width: 30px;
        text-align:center;
    }
    .right-tool-tip > .tool-tip-item > a > .icon-context > i {
        font-size:18px;
    }
    .right-tool-tip > .tool-tip-item > a > .icon-context > img {
        height:22px;
        padding-bottom:2px;
    }

.message-tool-tip {
    position: fixed;
    right: 10px;
    bottom: 38px;
    width: 40px;
    height: 40px;
    background-color:#ff0000;
    padding:9px;
    color:#fff;
    border-radius:3px;
    z-index:100;
    box-shadow:3px 3px 7px rgba(0, 0, 0, 0.1);
    cursor:pointer;
    display:none;
}
.message-tool-tip > i{
    font-size:20px;
}

.message-body {
    position: fixed;
    bottom: 10px;
    right: 10px;
    height: 300px;
    width: 300px;
    background-color: #fff;
    padding: 10px;
    z-index: 100;
    display: none;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.10);
}
    .message-body > input,textarea {
        width: 100%;
        border: none;
        border-style: none;
        border-bottom: 1px solid #eee;
        border-radius: 0px;
        padding: 7px 15px;
        outline: none;
        margin-bottom: 5px;
        color:#000;
    }
    .message-body > button {
        float: right;
        border: none;
        padding: 5px 15px;
        color: #1a927c;
        background-color: #fff;
        border: 1px solid #ddd;
    }
        .message-body > button:hover {
            color: #fff;
            background-color: #1a927c;
            border: 1px solid #1a927c;
        }
        .message-body > .close-button {
            background-color:#fff;
            padding:0px;
            color:#ff0000;
            border-radius:50%;
            border:none;
            float:left;
            font-size:12px;
            margin-top:15px;
            outline:none;
        }
            .message-body > .close-button:hover {
                background-color: #fff;
                border: none;
                color: #d90000;
            }

    .message-body > .input-group > input {
        width: 100%;
        border: none;
        border-style: none;
        border-bottom: 1px solid #eee;
        border-radius: 0px;
        padding: 7px 15px;
        outline: none;
        color: #000;
    }
    .message-body > .input-group > .input-group-addon {
        background-color:#fff;
        border:none;
        border-bottom: 1px solid #eee;
        margin-bottom: 5px;
    }
/*============MODAL=============*/

.modal-content .modal-header {
    padding: 5px 10px;
    border-bottom: none;
}

    .modal-content .modal-header .close {
        font-size: 30px;
        opacity: .70;
    }

    .modal-content .modal-header h5 {
        font-size: 17px;
        font-weight: bold;
    }

.login-popup .modal-content {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 180px;
}

.login-popup .close {
    padding: 0px 15px;
    outline: none;
}

/*============!! MODAL=============*/

.panel {
    border-radius: 0px;
}

.panel-primary {
    border-color: #dddddd;
    background-color: #fff;
    box-shadow: 2px 2px 12px rgba(131, 131, 131, 0.20);
    min-height: 400px;
}

    .panel-primary > .panel-heading {
        border-radius: 0px;
        background-color: #fff;
        border-color: #d0dae2;
        color: #ff6d00;
        font-weight: bold;
        height: 40px;
    }

        .panel-primary > .panel-heading > .heading {
            float: left;
        }

        .panel-primary > .panel-heading > .button {
            float: right;
        }

            .panel-primary > .panel-heading > .button > .btn-success {
                padding: 2px 5px;
                font-size: 12px;
            }
.input-as-hidden{
    position:absolute;
    border:none;
    background-color:none;
    outline:none;
    height:0px;
    width:0px;
}
button {
    outline: none;
}

.form-control {
    border: 1px solid rgba(0, 107, 100, 0.20);
    border-radius: 0px;
}

    .form-control:focus {
        border: 1px solid #dee1e9;
        box-shadow: 2px 4px 8px rgba(0, 107, 100, 0.06);
        outline: none;
    }

    .btn{
        outline:none;
    }

.bottom-tab {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    display: none;
    z-index: 100;
}

    .bottom-tab table {
        width: 100%;
    }

        .bottom-tab table td {
            width: 25%;
            height: 30px;
            background-color: #fff;
            border: 1px solid #ddd;
            text-transform: uppercase;
            font-size: 10px;
            font-weight: bold;
            box-shadow: 0px -2px 2px rgba(8, 45, 88, 0.10);
            background-image: linear-gradient(to top, rgba(255, 255, 255, 1.00), rgb(242, 242, 242));
            cursor: pointer;
        }

            .bottom-tab table td:hover {
                background-image: linear-gradient(to top, rgb(242, 242, 242), rgba(255, 255, 255, 1.00));
            }

            .bottom-tab table td i {
                font-size: 12px;
                display: block;
                color:#ea0000;
            }
            .bottom-tab table td img {
                height:13px;
                display:block;
                margin-left:auto;
                margin-right:auto;
            }
            .bottom-tab table td a {
                text-decoration: none;
                color: unset;
                display: block;
                padding: 3px 0px;
            }

.small-navigation {
    position: fixed;
    top: 50px;
    left: 0px;
    right: 0px;
    bottom: 40px;
    z-index: 99;
    overflow: auto;
    display: none;
}

    .small-navigation > .layer {
        padding: 25px 0px;
        padding-top:35px;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(22, 65, 148, 0.71);
        background-image: linear-gradient(to bottom right, rgba(22, 65, 148, 0.40), rgba(22, 65, 148, 1));
    }

        .small-navigation > .layer > a {
            font-family: 'Roboto',sans-serif;
            display: block;
            padding: 5px 15px;
            color: #fff;
            font-size: 12px;
        }

            .small-navigation > .layer > a > i {
                font-size: 17px;
                color: #fff;
                width: 18px;
            }

        .small-navigation > .layer > .sub {
            padding-left: 40px;
        }

        
::placeholder {
    color: #97a2b4;
    font-size: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal;
}

:-ms-input-placeholder {
    color: #97a2b4;
    font-size: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal;
}

::-ms-input-placeholder {
    color: #97a2b4;
    font-size: 12px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal;
}

.as-hide{    
    height: 0px;
    width: 0px;
    padding: 0px!important;
    border: 1px solid rgba(0, 0, 0, 0.00)!important;
    position: absolute;
    background-color:transparent;
    color:transparent;
}

.fl-search{
    width:100%;
    position:relative;
    background-color:#fff;
    height:100%;
    z-index:100;
}
.fl-search > .search-context{
    position:absolute;
    width:100%;
    left:15px;
    height:auto;
    background-color:#fff;
    border:1px solid #ddd;
    box-shadow:0px 0px 3px rgba(0, 0, 0, 0.05);
    z-index:100000;
}
.fl-search > .search-context > .search-item{
    padding:5px 15px;
    margin:0px;
    cursor:pointer;
    width:100%;
    background-color:#fff;
    color:#000;
    border-style:none;
    text-align:left;
}
.fl-search > .search-context > .search-item:hover{
    background-color:#eee;
}


.paging-number {
    height: 30px;
    width: 30px;
    background-color: #fff;
    color: #1c9ccb;
    display: inline-block;
    border: 1px solid #EEEEEE;
    padding-top: 4px;
    text-align: center;
    border-radius: 0%;
    border: 1px solid #CCC;
    margin-right: 3px;
}

    .paging-number:hover {
        background-color: #1c9ccb;
        cursor: pointer;
        color: #fff;
        border: 1px solid #1c9ccb;
    }

.paging-active {
    background-color: #1c9ccb;
    border: 1px solid #1c9ccb;
    color: #fff;
    cursor: default !important;
}
@media (max-width:1200px) {
    .top-bar > .logo-context {
        width: 290px;
    }
}

@media (max-width:1100px){
    .top-bar > .contact-context {
        display: none;
    }
}
@media (max-width:1050px){    
    .footer-simple .menu-context {
        padding: 10px 50px;
    }
}

@media (max-width:991px) {
    .small-top-bar{
        display:none;
    }
    .top-bar > .logo-context {
        width: 250px;
        padding-top: 15px;
    }
        .top-bar > .logo-context > a > img {
            height: 30px;
        }

    .top-bar > .nav-context > .nav-item > a {
        font-size: 13px;
        padding:20px 10px;
    }


    .footer-simple .menu-context {
        padding: 10px;
    }
}
@media (max-width:800px) {
    .top-bar > .nav-context > .nav-item > a {
        padding: 20px 8px;
    }
}

@media (max-width:767px) {
    .top-bar > .nav-context > .nav-item {
        display:none;
    }

    .top-bar > .logo-context {
        width: 200px;
        padding: 10px;
    }

        .top-bar > .logo-context > a > img {
            height: 30px;
        }

    .top-bar .small-menu-icon {
        display: block;
    }

    .footer-simple {
        margin-bottom: 36px;
        border-top: 5px solid #ea0000;
    }
    .footer-simple .menu-context > .item-body {
        width: 33.33%;
        font-size: 12px;
    }

        .footer-simple .menu-context > .item-body > .title {
            font-size: 14px;
        }

    .footer-simple .menu-context > .barvida img {
        height: 30px;
    }
    .footer-simple .menu-context > .social-media > .title {
        font-size: 12px;
    }
    .footer-simple .menu-context > .social-media {
        width: 50%;
        margin-left: 0%;
        margin-right: 0%;
    }
        .footer-simple .menu-context > .ssl-icon {
            width: 100%;
            padding:10px;
        }
    .footer-simple .menu-context > .google-rate {
        width: 50%;
        padding:10px 0px;
    }

        .footer-simple .menu-context > .google-rate > .body {
            padding:10px 5px;
        }

            .footer-simple .menu-context > .google-rate > .body > .image-context {
                width: 40px;
            }

            .footer-simple .menu-context > .google-rate > .body > .text-context {
                font-size: 14px;
            }


    .right-tool-tip {
        display: none;
    }

    .bottom-tab {
        display: unset;
    }

    .message-tool-tip {
        display: none;
    }

}

.loader {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
}

    .loader > .main-context {
        display: table;
        height: 100%;
        width: 100%;
    }

        .loader > .main-context > .body {
            height: 100%;
            color: #fff;
            width: 100%;
            display: table-cell;
            text-align: center;
            vertical-align: middle;
        }

            .loader > .main-context > .body > .title {
                padding-top: 5px;
            }
@media (max-width:500px) {
    .top-bar > .logo-context {
        width: 180px;
    }
    .top-bar > .logo-context > a > img {
        height: 25px;
    }
    .top-bar > .small-menu-icon {
        padding-top: 8px;
    }

    .footer-simple .menu-context {
        padding: 0px;
    }
        .footer-simple .menu-context > .social-media a {
            height: 25px;
            width: 25px;
            padding-top: 3px;
        }
            .footer-simple .menu-context > .social-media a i {
                font-size: 14px;
            }
        .footer-simple .menu-context > .google-rate {
            padding: 10px;
            padding-right: 5px;
        }
        .footer-simple .menu-context > .google-rate > .body {
            padding: 5px;
        }
            .footer-simple .menu-context > .google-rate > .body > .image-context {
                width: 30px;
            }

            .footer-simple .menu-context > .google-rate > .body > .text-context {
                font-size: 13px;
            }

    .footer-simple > .copyright {
        padding: 4px 20px;
        font-size: 10px;
    }
        .footer-simple > .copyright > .item {
            width: 100%;
        }
            .footer-simple > .copyright > .item > a {
                float: left;
            }
}

@media (max-width:400px){
    .footer-simple .menu-context > .item-body {
        font-size: 10px;
    }


    .footer-simple .menu-context > .item-body > .title {
        font-size: 13px;
    }

}
@media (max-width:350px) {
    .footer-simple .menu-context > .item-body {
        font-size: 10px;
    }

        .footer-simple .menu-context > .item-body > .title {
            font-size: 12px;
        }
}

.fb_dialog_content > iframe {
    right: -10px !important;
    bottom: 30px !important;
}
