﻿@font-face {
    font-family: 'BYekan';
    src: url('../fonts/BYekan.woff') format('woff'), url('../fonts/BYekan.ttf') format('truetype'), url('../fonts/BYekan.eot') format('embedded-opentype');
}

@font-face {
    font-family: 'IRANSansWeb';
    src: url('IRANSansWeb.woff') format('woff');
}

body {
    font-size: 14px !important;
    overflow-x:hidden;
}
/*h1, h2, h3, h4, h5, h6 {
    font-family: 'TAHOMABD' !important;
}
body, p, a, .sp-megamenu-parent > li > a {
    font-family: 'Tahoma Regular font' !important;
}*/

.col-white {
    color: #fff;
}

    .col-white:hover {
        color: #eee;
    }

.sp-default-logo {
    margin: 0 auto;
}

.logoText {
    line-height: 60px !important;
    font-size: 20px;
}

.k-autocomplete, .k-combobox, .k-datepicker, .k-timepicker, .k-datetimepicker, .k-colorpicker, .k-numerictextbox, .k-dropdown, .k-selectbox, .k-textbox {
    width: 100% !important;
}

.marquee-box {
    /*height: 50px;*/
    overflow: hidden;
    position: relative;
}

.marquee-element {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
    /* Starting position */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /* Apply animation to this element */
    -moz-animation: marquee 15s linear infinite;
    -webkit-animation: marquee 15s linear infinite;
    animation: marquee 15s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes marquee {
    0% {
        -moz-transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes marquee {
    0% {
        -moz-transform: translateX(100%); /* Firefox bug fix */
        -webkit-transform: translateX(100%); /* Firefox bug fix */
        transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%); /* Firefox bug fix */
        -webkit-transform: translateX(-100%); /* Firefox bug fix */
        transform: translateX(-100%);
    }
}




.field-validation-error {
    color: #ff0000;
}