/** Generated by QuickPaging **/
.newsletter {
        display: none;
    }

    .alert-warning {
        background-color: transparent;
        border-color: transparent;
        color: #f70000;
    }

    .alert {
        text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .alert-success {

        background: none;
        font-size: 14px;
        border: none;
        border-color: transparent;
    }

    /**** My Style*****/
    .submita {
        display: block;
        clear: both;
        position: relative;
        animation-delay: 1s;
    }

    .form-box {
        background: #e6e5e8;
        min-height: 420px;
        display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox; /* TWEENER - IE 10 */
        display: -webkit-flex; /* NEW - Chrome */
        display: flex;
        -ms-flex: 1;
        align-items: center;
        justify-content: center;
    }

    .txt-box {
        min-height: 420px;
    }

    .pack-ttl {
        width: 100%;
        display: block;
        text-align: center;
    }

    .pack-ttl span {
        padding: 3px 0px;
        border: 1px solid #046767;
        border-radius: 5px 5px 0 0;
        border-bottom: 0;
        background: #038888;
        color: #fff;
        width: 70%;
        display: block;
        margin: 0 auto;
    }

    .pack-reg {
        width: 100%;
        display: block;
        text-align: center;
    }

    .pack-reg span {
        padding: 3px 0px;
        border: 1px solid #188c27;
        border-radius: 5px 5px 5px 5px;
        /*border-bottom: 0;*/
        background: #22c737;
        color: #fff;
        width: 70%;
        display: block;
        margin: 0 auto;
    }

    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
        .form-sec {
            height: 100%;
        }
    }

    .right-side {
        width: 100%;
        float: right;
        clear: both;
        padding: 18% 20%;
        font-size: 14px;
    }

    #FormSection h1 {
        font-size: 16px;
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
        color: #6b6b6b;
    }

    /*****/
    #FormSection {
        width: 100%;
        padding: 1em 2em 1em 2em;
    }

    .group {
        position: relative;
        margin-bottom: 45px;
    }

    .group input {
        font-size: 16px;
        padding: 5px;
        -webkit-appearance: none;
        display: block;
        background: #fff !important;
        color: #80808f;
        width: 100%;
        border: none;
        border-radius: 5px 5px 0 0;
        border-bottom: 2px solid #b1b1b1 !important;
    }

    .group input:focus {
        outline: none;

    }

    /* Label */

    label {
        color: #999;
        font-size: 16px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        right: 5px;
        top: 10px;
        transition: all 0.2s ease;
    }

    /* active */

    .group input:focus ~ label, .group input.used ~ label {
        top: 0px;
        transform: scale(.75);

        /* font-size: 14px; */
        color: #ff9008;
        padding: 3px 10px;
    }

    .phoneNumlbl input:focus ~ label, .phoneNumlbl input.used ~ label {
        right: -10px;
    }

    .emaillbl input:focus ~ label, .emaillbl input.used ~ label {
        right: 10px;
    }

    .bar {
        position: relative;
        display: block;
        width: 100%;
    }

    .bar:before, .bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: #ff9008;
        transition: all 0.2s ease;
    }

    .bar:before {
        right: 50%;
    }

    .bar:after {
        left: 50%;
    }

    .group input:focus ~ .bar:before, .group input:focus ~ .bar:after {
        width: 50%;
    }

    .highlight {
        position: absolute;
        height: 60%;
        width: 100px;
        top: 25%;
        right: 0;
        pointer-events: none;
        opacity: 0.5;
    }

    .group input:focus ~ .highlight {
        animation: inputHighlighter 0.3s ease;
    }

    select:focus ~ .highlight {
        animation: inputHighlighter 0.3s ease;
    }

    @keyframes inputHighlighter {
        from {
            background: #005baa;
        }
        to {
            width: 0;
            background: transparent;
        }
    }

    .button {
        position: relative;
        display: inline-block;
        padding: 8px 40px;
        margin: .3em 0 1em 0;
        width: auto;
        vertical-align: middle;
        color: #fff;
        font-size: 14px;
        line-height: 20px;
        -webkit-font-smoothing: antialiased;
        text-align: center;
        letter-spacing: 1px;
        background: transparent;
        border: 0;
        float: left;
        border-bottom: 2px solid #60842c;
        cursor: pointer;
        transition: all 0.15s ease;
        border-radius: 5px;
    }

    .button:focus {
        outline: 0;
    }

    .buttonOrange {
        background: #91c741;
        text-shadow: 1px 1px 0 rgb(115, 158, 52);
    }

    .buttonOrange:hover {
        background: #79b127;
    }

    .ripples {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: transparent;
    }

    .ripplesCircle {
        position: absolute;
        top: 50%;

        transform: translate(-50%, -50%);
        opacity: 0;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
    }

    .ripples.is-active .ripplesCircle {
        animation: ripples .4s ease-in;
    }

    @keyframes ripples {
        0% {
            opacity: 0;
        }

        25% {
            opacity: 1;
        }

        100% {
            width: 200%;
            padding-bottom: 200%;
            opacity: 0;
        }
    }

    .group input[type="text"], .group input[type="email"], .group input[type="number"] {
        text-align: left;
        direction: ltr;
    }

    .row {
        margin: 0;
    }

    fieldset {
        width: 100%;
    }

    label {
        font-family: 'IRANSans', Tahoma, Arial, Helvetica, Sans-Serif;
        font-size: 14px;
        line-height: 100%;
        color: #80808f;
        font-weight: normal;
    }

    option {
        color: #282828;
    }

    option.disabled, option.disabled:hover, option.disabled:focus {
        cursor: not-allowed;
        pointer-events: none;
        color: #cccccc;
    }

    .loader {
        background: rgba(255, 255, 255, 0.6) center center repeat scroll;
        margin: 0 auto;
        padding: 0;
        left: 0;
        width: 100%;
        height: 100%;
        top: 0;
        display: none;
        position: fixed;
        z-index: 99;
    }

    .alret-bg {
        background: rgba(255, 255, 255, 0.6) center center repeat scroll;
        margin: 0 auto;
        padding: 0;
        left: 0;
        width: 100%;
        height: 100%;
        top: 0;
        opacity: 0;
        position: fixed;
        z-index: 99;
    }

    .alret-box {
        background: rgba(0, 0, 0, 0.8) center center repeat scroll;
        margin: 0 auto;
        padding: 5%;
        left: 0;
        width: 50%;
        box-shadow: rgba(0, 0, 0, 0.3) 6px 6px 6px;
        -moz-box-shadow: rgba(0, 0, 0, 0.3) 6px 6px 6px;
        -webkit-box-shadow: rgba(0, 0, 0, 0.3) 6px 6px 6px;
        -o-box-shadow: rgba(0, 0, 0, 0.3) 6px 6px 6px;
        -ms-box-shadow: rgba(0, 0, 0, 0.3) 6px 6px 6px;
        top: 0;
        display: none;
        opacity: 0;
        position: absolute;
        z-index: 100;
    }

    section {
        position: relative;
        overflow: hidden;
    }

    .current_package {
        border: 1px solid #d0d0d0;
        border-radius: 6px;
        position: relative;
        color: #565656;
        overflow: hidden;
        font-family: 'IRANSans';
        display: none;
        clear: both;
        background-color: #fff;
        vertical-align: top;
        clear: both;
        width: 100%;
        box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.38);
    }

    .package_type {
        height: 35px;
        text-align: center;
        direction: rtl !important;
        position: relative;
        color: #565656;
        padding: 7px;
    }

    .package_type h3 {
        font-size: 12pt !important;
        margin-top: 7px;
    }

    .package_option {
        background-color: #ffac31;
        height: auto;
        padding-bottom: 2px;
        text-align: center;
        padding-top: 2px;
        direction: rtl !important;
        position: relative;
        color: #fff;
    }

    .package_option h3 {
        font-size: 19px !important;
        margin-top: 7px;
    }

    .text-right {
        font-size: 14px;
        line-height: 43px;
        padding: 0px 32px;
    }

    .main_title {
        height: 60px;
        padding: 25px 10px;
        background-color: #ae3722;
        margin-top: -20px;
        direction: rtl;
        color: #fff;
        font-size: 16px;
        text-align:center;
    }

    .main_title h2 {
        text-align: center;
        font-size: 15pt;
        height: 135px;
        padding-top: 11px;
    }

    .package_type_vol .main_title {
        background-color: #ff9008 !important;
    }

    .package_type_unlimited .main_title {
        background-color: #ff9008 !important;
    }

    .package_type_iran .main_title {
        background-color: #ff9008 !important;
    }


    .price_box {
        background-color: #f78b1d;
        height: 61px;
        padding: 5px;
        text-align: center;
        color: #ffffff;
        font-size: 12pt;
    }

    .offer_price {
        font-size: 18pt;
        font-weight: bold;
    }

    .price_box_conditional_price span {
        color: #fff !important;
        font-size: 65pt;
        font-family: Impact;
        font-weight: bold;
    }

    .package_details {
        background-color: #fff;
        min-height: 150px;
        padding: 10px;
        text-align: center;
        direction: rtl;
        color: #80808f;
        font-size: 9pt;
    }

    .package_buttom_details span {
        font-size: 16pt;
    }

    .img {
        width: 100%;
        display: block
    }

    .banner-img img {
        display: block;
    }

    #banner {
        border-top: 10px solid #e6e5e8;
    }

    .txt-box {
        background: url(//www.parsonline.com/data/uploaded_files/1533713015-3.png) no-repeat center;
        background-size: 80% 80%;
    }

    .form-sec {
        background: #f1f2f2;
    }

    .current_package {
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
    }

    .current_package:hover {
        box-shadow: 0px 3px 10px -1px rgba(0, 0, 0, 0.5)
    }

    .package_buttom a {
        border-radius: 5px;
        background-color: #3d9b35;
        color: #fff;
        padding: 5px 20px;
        text-align: center;
        clear: both;
        font-size: 14px;
        margin: 10px 0;
        cursor: pointer;
        display: inline-block;
    }

    .package_buttom {
        text-align: center;
        width: 100%;
        clear: both;
    }

    @media only screen and (max-width: 980px) {
        .form-sec .container {
            width: 80%;
            margin: 0 auto;
        }

        #FormSection {
            padding: 3em 1em 2em 1em;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 980px) {
        .txt-slide .slide-content {
            font-size: 16px;
            padding: 9px 25px;
        }

        .blue h3 {
            font-size: 28px;
        }
    }

    @media only screen and (max-width: 768px) {
        .package_details {
            min-height: inherit;
        }

        label {
            font-size: 14px;
            top: 15px;
        }

        .txt-box, .form-box, .thanks {
            min-height: 1px;
            width: 100%;
        }

        .txt-slide {
            padding: 0;
            width: 100%;
        }

        #FormSection {
            padding: 5px 3em 0em 3em;
            margin-bottom: 5px;
        }

        .group {
            margin-bottom: 25px;
        }

        .button {
            padding: 4px 30px;
            margin: 1em 0 1em 0;
        }

        header h1 {
            margin: 12px 0;
        }

        #FormSection {
            padding: 10px 3em 0em 3em;
        }
    }

    @media only screen and (max-width: 480px) {
        #FormSection h1 {
            font-size: 13px;
        }

        .txt-box {
            background: none;
            padding: 0;
        }

        .form-sec {
            display: block;
        }

        .footer-txt {
            font-size: 10px;
            line-height: 23px;
            position: relative;
            margin: 15px 0 0 0;
        }

        .txt-box {
            background: none;
        }

        .right-side {
            background-color: #d8d8d8;
	    padding: 10px;
	    margin-top: 15px;

        }

        #FormSection {
            padding: 10px 0em 0em 0em;
        }

    }

    @media only screen and (max-width: 400px) {
        .form-sec .container {
            width: 90%;
            min-height: 400px;
            margin: 0% auto;
        }

        .txt-box {
            padding: 0 5px;
        }

        .right-side p {
            font-size: 12px;
            line-height: 24px;
        }

        header h1 {
            margin: 8px 0;
            font-size: 22px;
        }

        label {
            font-size: 12px;
        }

        .group {
            margin-bottom: 10px;
        }

        .button {
            padding: 5px 25px;
            font-size: 12px
        }
    }

    @media all and (-ms-high-contrast: none) {
        .form-box {
            height: 420px;
        }

        *::-ms-backdrop, .form-box {
            height: 420px;
        }
    }

    .onlysmall {
        font-size: 8pt !important;
    }

    .bubble_red {
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        margin: 0 auto;
        max-width: 400px;
        width: 90%;
        border: 1px solid #888;
        color: #ff0000;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .tbl-header{
        background-color: #0056b7;
        color: #fff;
        font-weight: bold;
    }