/*ModirAzhans.ir 2020 Copyright*/
/*Allright is reserved.*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html, body {
    height: 100%;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* -------------------Start Coding-------------------- */

/******Load fonts*******/
@font-face {
    font-family: 'irans';
    src: url('../fonts/iransans.eot'); /* IE9 Compat Modes */
    src: url('../fonts/iransans.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/iransans.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/iransans.woff') format('woff'), /* Pretty Modern Browsers */ url('../fonts/iransans.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/iransans.svg#svgFontName') format('svg'); /* Legacy iOS */
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    font-family: 'iransans', 'irans';
    font-size: 12px;
}

a {
    color: #242424;
    text-decoration: none;
}

a:hover {
    color: #000;
}

input[type="text"], input[type="password"], input[type="number"], input[type="email"], input[type="tel"], input[type="url"], textarea {
    padding: 12px;
    font: 12px 'iransans', 'irans';
    color: #212121;
    border: 1px solid #f5eaff;
    outline: none;
    transition: all 0.1s ease;
}

input[type="text"]:hover, input[type="password"]:hover, input[type="number"]:hover, input[type="email"]:hover, input[type="tel"]:hover, input[type="url"]:hover, textarea:hover {
    border: 1px solid #c1c1c1;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="url"]:focus, textarea:hover {
    border: 1px solid #a7a7a7;
}

input[type="button"], input[type="submit"] {
    background: #27ae60;
    border: none;
    font: 15px 'iransans', 'irans';
    color: #fafafa;
    padding: 5px 15px;
    float: left;
    border-radius: 3px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    outline: none;
    transition: all 0.1s ease-in-out;
}

input[type="button"]:hover, input[type="submit"]:hover {
    background: #20884c;
}

input[type="button"]:active, input[type="submit"]:active {
    box-shadow: none;
}

select, option {
    padding: 12px;
    font: 12px 'iransans', 'irans';
    color: #212121;
    border: 1px solid #f5eaff;
    outline: none;
    transition: all 0.1s ease;
    width: 100%;
}

select:hover, option:hover {
    border: 1px solid #c1c1c1;
}

select:disabled {
    background: #eaeaea;
}

/*Globals*/

hr {
    border: 0;
    border-bottom: 1px solid rgb(245 234 255);
    margin: 10px auto;
}

.clr {
    clear: both;
}

.borderBox {
    margin: 30px 10px;
    padding: 10px;
}

.borderBox h3 {
    padding: 0 2px 13px 0 !important;
    font-size: 19px !important;
    color: #8741ca !important
}

.helperBox {
    width: 100%;
    margin: 0 auto;
    background: #eee;
    padding: 10px;
    line-height: 2;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    color: #2f2f2f;
    font-size: 14px;
}

.blockElement {
    display: block;
}

h1 {
    font-size: 23px;
    color: #212121;
}

#snackbar,#snackbaralert {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px;
    font-size: 14px;
    margin: 0 auto;
    background-color: #43a047;
    color: #ffffff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    line-height: 2;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 30px;
}

#snackbar {
    background-color: #43a047;
}
#snackbaralert {
    background-color: #ce2331;
}




/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

#overlay #msgBox {
    background: #fff;
    width: 40%;
    position: absolute;
    right: 30%;
    top: 30%;
    min-height: 150px;
    border-radius: 6px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

#overlay #msgBox p {
    line-height: 2;
    font-size: 14px;
    margin-bottom: 40px;
}

#overlay #msgBox #close {
    position: absolute;
    background: #29B6F6;
    left: 5%;
    bottom: 10%;
    padding: 8px 16px;
    font-size: 15px;
    color: #fafafa;
    border-radius: 4px;
    cursor: pointer;
}

/* No Active Box */

#noActiveBox {

}

#desContent {
    width: 90%;
    margin: 10px auto;
    font-size: 15px;
    line-height: 2;
    text-align: justify;
    color: #464646;
}

#desContent img {
    max-width: 100%;
}

#noActiveBox p {
    background: #66BB6A;
    width: 90%;
    padding: 15px;
    margin: 35px auto;
    font-size: 18px;
    color: #fafafa;
    border-radius: 3px;
    box-shadow: 2px 2px 4px #b9b9b9;
}

table {
    width: 100%;
    margin: 0 auto;
}

table thead {
    background: #4DD0E1;
    border-right: 3px solid #4DD0E1;
    border-left: 3px solid #4DD0E1;
}

table tbody {
    background: #E0E0E0;
    border-right: 3px solid #4DD0E1;
    border-left: 3px solid #4DD0E1;
}

table tr > td {
    border-bottom: 1px solid #ccc;
}

table tr th {
    padding: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #fafafa;
    text-align: right;
    vertical-align: middle;
    line-height: 1.5;
}

table tr td {
    padding: 12px;
    font-size: 12px;
    color: #212121;
    text-align: right;
    vertical-align: middle;
    line-height: 1.5;
}


#infoBoxes .infoBox .text a {
    display: block;
    background: #ef5350;
    border-radius: 4px;
    margin-top: 10px;
    font-size: 13px;
    color: #ffffff;
    width: 100%;
    text-align: center;
    font-weight: bold;
    transition: all 0.1s ease-in-out;
}


/********************************Right Sidebar******************************/
#sideBar {
    width: 20%;
    height: auto;
    background: #f5eaff;
    float: right;
    padding: 15px 0;
    color: #2c3e50;
    border-left: 2px solid #eaeaea;
}

#sideBar h1 {
    font-size: 18px;
    color: #f2655a;
    padding-right: 14px;
}

#sideBar h1 span {
    vertical-align: super;
    font-size: 12px;
    color: #fafafa;
}

#tabBarMain {
    margin-top: 20px;
}

.tabBar {
    font-size: 12px;
    margin: 10px 15px;
    padding: 0 35px 20px;
    opacity: 1;
    transition: 0.2s ease;
    position: relative;
    line-height: 1.7;
}

.tabBar:hover {
    opacity: 1;
    padding-right: 40px;
    color: red;
}

.tabBar a:hover {
    color: #340d59;
}


.active.tabBar {
    opacity: 1;
}


.haveChild.tabBar:after {
    content: '';
    background: url(../images/icons/left.png) left top no-repeat;
    width: 10px;
    height: 10px;
    background-size: 10px;
    float: left;
    position: absolute;
    top: 0px;
    left: 5px;
}

.tabBar a {
    color: #8741ca;
    display: block;
    font-weight: 700;
}

.tabBar i.fa {
    position: absolute;
    right: 0;
    font-size: 18px;
    color: #8741ca;
}

.dashboard.tabBar {
    background: url(../images/icons/dashboard.png) right top no-repeat;
    background-size: 20px;
}

.themes.tabBar {
    background: url(../images/icons/themes.png) right top no-repeat;
    background-size: 18px;
}

.line-part {
    font-size: 10px;
    position: relative;
    border-bottom: 1px solid;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 6px;
}

/*.line-part:after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    border-top: 2px solid #f35549;*/
/*    width: 120px;*/
/*    margin-right: 10px;*/
/*    margin-top: 4px;*/
/*}*/

/*Child*/

.tabBar ul {
    margin: 10px -25px;
    display: none;
}

.tabBar ul li {
    margin: 20px 0px 10px;
    padding: 0 35px 0px;
}

.tabBar ul li a {
    color: #ba41ca;
}

.tabBar .count {
    background: #f35549;
    padding: 2px 8px;
    border-radius: 12%;
    font-size: 11px;
    color: #fff;
    margin-right: 5px;
}

/*Main*/
#main-page {
    background: #fff;
    width: 100%;
    height: auto;
    float: left;
    border-bottom: 3px solid #f5eaff;
}

#main {
    background: #fff;
    width: 80%;
    height: 100px;
    float: left;
}

#topNav {
    width: 100%;
    height: 60px;
    padding: 10px;
    background: #8741ca;
}

#topNav #profileImg {
    float: left;
}

#imgtop img {
    float: right;
    margin-top: -16px;
    width: 75px;
    height: 66px;
}

#topNav #profileImg #theName {
    float: right;
    font-size: 13px;
    margin: 10px 5px;
    position: relative;
    cursor: pointer;
    color:#fff;
}

#topNav #profileImg #theName:before {
    content: '';
    background: url(../images/icons/down.png) right top no-repeat;
    width: 10px;
    height: 10px;
    background-size: 10px;
    position: absolute;
    top: 6px;
    right: -16px;
    filter: brightness(20);
}

#topNav #searchBox {
    float: right;
    padding: 8px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
}

#topNav #profileImg #hiddenBox {
    background: #8741ca;
    padding: 6px 12px;
    margin-top: 5px;
    display: none;
    position: absolute;
    width: 245px;
    z-index: 2;
    left: 0;
    top: 56px;
}

#topNav #profileImg #hiddenBox li {
    text-align: center;
    padding-top: 5px;
}

#topNav #profileImg #hiddenBox hr {
    margin: 5px auto;
}

#topNav #profileImg #hiddenBox li a {
    color: #f5eaff;
    font-size: 11px;
    transition: all 0.2s ease;
}

#topNav #profileImg #hiddenBox li a:hover {
    color: #fafafa;
}

/* Private Notifications */

@keyframes Shake {
    0% {
        transform: rotate(25deg)
    }
    10% {
        transform: rotate(-25deg)
    }
    20% {
        transform: rotate(25deg)
    }
    30% {
        transform: rotate(-25deg)
    }
    50% {
        transform: rotate(0deg)
    }
}

#topNav #privateNotifs {
    background: url(../images/icons/bell.png) center center no-repeat;
    margin-left: 30px;
    filter: brightness(10);
}

#topNav #daysNotifs {
    background: url(../images/icons/clock2.png) center center no-repeat;
    margin-left: 10px;
    filter: brightness(10);
}

#topNav #privateNotifs a, #topNav #daysNotifs a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

#topNav #privateNotifs, #topNav #daysNotifs {
    float: left;
    width: 30px;
    height: 30px;
    background-size: 23px;
}

#topNav #privateNotifs span, #topNav #daysNotifs span {
    background: #f44336;
    padding: 1px 5px;
    font: 11px tahoma;
    color: #fff;
    border-radius: 50%;
}

#topNav .haveNotif#privateNotifs, #topNav .haveNotif#daysNotifs {
    animation: Shake ease-in-out 1s infinite alternate;
}

#searchBox input[type="text"] {
    border: none;
    font-size: 13px;
    outline: none;
}

#searchBox input[type="submit"] {
    border: 0;
    background: url(../images/icons/search.png) center center no-repeat;
    width: 20px;
    height: 20px;
    background-size: 20px;
    vertical-align: middle;
    cursor: pointer;
    box-shadow: none;
}

#user_sub {
    float: left;
    margin-top: 10px;
}

#user_sub a {
    padding: 6px;
    color: #fff;
    border-radius: 5px;
    transition: 0.1s ease;
}

#user_sub a:hover {
    opacity: 0.8;
}

/*Information Boxes*/

#title-box{
    background: #8741ca;
    padding: 12px;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    color: #fff;
    height: 40px;
 }

#infoBoxes {
    margin-top: 20px;
}

#infoBoxes .infoBox {
    width: 28%;
    min-height: 129px;
    display: inline-block;
    margin-right: 2%;
    vertical-align: top;
    height: 230px;
	margin-bottom:20px;
}

#infoBoxes .time.infoBox {
    background: url(../images/icons/clock.png) no-repeat #26C6DA;
    background-size: 160px;
    background-position: -25px 70px;
}

#infoBoxes .info.infoBox {
    background: #f5eaff;
    background-size: 230px;
    background-position: center bottom 15px;
}

#infoBoxes .app.infoBox {
    background: url(../images/icons/chart2.png) no-repeat #66BB6A;
    background-size: 230px;
    background-position: center bottom 15px;
}

#infoBoxes .infoBox .text {
    color: #2c3e50;
    line-height: 2;
    font-weight: 700;
    padding: 10px;
    text-align: center;
}

#infoBoxes .infoBox .text:first-child {
    font-size: 13px;
    color: #f2655a;

}

.infoBox #img{
    width:20%;
    margin: 5px auto;
}

.infoBox img{
    width:100%
}

#infoBoxes .app .text:first-child {
    font-size: 30px;
}

.box-app-fild {
    background: #ecf0f1;
    height: 50px;
    padding: 8px;
    color: #f35549;
    border: 2px solid #95a5a6;
    border-radius: 5px;
    line-height: 31px;
    font-weight: 700;
}

input#appLinkAndroid, input#appLinkIos {
    /*float: left;*/
}

/*Slider*/

#slider {
    width: 95.5%;
    margin: 30px auto 60px;
}

/*#maLastPosts {*/
/*    background: #e2e2e2;*/
/*    width: 95%;*/
/*    margin: 20px auto;*/
/*    padding: 15px;*/
/*}*/

.lastPosts-cell {
    display: inline-block;
    width: 29.3%;
    height: 250px;
    margin: 3.5% 2%;
    background: #8C8;
    border-radius: 5px;
}

.lastPosts-cell img {
    width: 100%;
    height: 100%;
    border-radius: 5px 5px 0 0;
    position: relative;
    border: 2px solid #95a5a6;
}

.lastPosts-cell p {
    padding: 10px;
    background: #ecf0f1;
    color: #2c3e50;
    width: 100%;
    height: 60px;
    line-height: 1.7;
    border-radius: 0 0 5px 5px;
    font-weight: 700;
    margin-top: -5px;
    border: 2px solid #95a5a6;
}

#maLastPostsTitle {
    font-size: 20px;
    margin-right: 20px;
    color: #f2655a;
    font-weight: 700;
}

/***********************************Theme***************************/

#themesList {
    margin-top: 20px;
    padding: 10px;
}

#themesList .theTheme {
    width: 30%;
    margin-top: 20px;
    margin-right: 20px;
    padding: 5px;
    border: 1px solid #dadada;
    float: right;
}

#themesList .theTheme img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

#themesList .theTheme h2 {
    font-size: 15px;
    margin-top: 5px;
}

#themesList .theTheme .preview {
    float: right;
    background: #00ACC1;
    /*width: 48%;*/
    margin-top: 10px;
}

#themesList .theTheme .choose {
    float: right;
    background: #43A047;
    /*width: 48%;*/
    margin-top: 10px;
    margin-right: 3%;
}

#themesList .theTheme .disabled {
    background: #9E9E9E !important;
    cursor: no-drop;
}

#themesList .theTheme .test {
    margin-top: 10px;
    background: #f44336;
}

#themesList #tabs {
    padding: 2%;
}

#themesList #tabs ul {
    margin-top: 20px;
}

#themesList #tabs ul li {
    text-align: center;
    float: right;
    margin-left: 5px;
    outline: none;
}

#themesList #tabs ul li a {
    background: #8741ca;
    padding: 16px 8px;
    border-bottom: none;
    font-size: 16px;
    color: #ffffff;
    outline: none;
    transition: all 0.1s ease-in-out;
}

#themesList #tabs ul li.ui-state-active > a {
    background: #e2c6fd;
    color: #8741ca;
}

#themesList #tabs .theTabMain {
    /*border: 1px solid #d4d4d4;*/
    /*padding: 20px;*/
    /*border-radius: 0 0 5px 5px;*/
    margin-top: 15px;
}

#thmDetails {
    background: #fff;
    width: 70%;
    height: 400px;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    right: 15%;
    top: 10%;
    z-index: 2;
    display: none;
}

#thmDetails #scrn {
    background: #eee;
    width: 50%;
    height: 100%;
    float: left;
    overflow: hidden;
    position: relative;
}

#thmDetails #content {
    width: 50%;
    height: 100%;
    float: right;
    padding: 15px;
}

#thmDetails #content h3 {
    font-size: 20px;
    color: #212121;
}

#thmDetails #content #description {
    margin-top: 10px;
    line-height: 1.8;
    font-size: 14px;
    color: #424242;
}


#thmDetails #scrn img {
    position: absolute;
    max-width: 100%;
    -webkit-transform: translateY(-100%);
    -moz-animation: marquee 30s cubic-bezier(0, 0.93, 0.96, 1.03) infinite;
    -webkit-animation: marquee 30s cubic-bezier(0, 0.93, 0.96, 1.03) infinite;
    animation: marquee 30s cubic-bezier(0, 0.93, 0.96, 1.03) infinite;
}

@-moz-keyframes marquee {
    0% {
        -moz-transform: translateY(-100%);
    }
    100% {
        -moz-transform: translateY(100%);
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateY(100%);
    }
    100% {
        -webkit-transform: translateY(-100%);
    }
}

@keyframes marquee {
    0% {
        -moz-transform: translateY(100%); /* Firefox bug fix */
        -webkit-transform: translateY(100%); /* Firefox bug fix */
        transform: translateY(100%);
    }
    100% {
        -moz-transform: translateY(-100%); /* Firefox bug fix */
        -webkit-transform: translateY(-100%); /* Firefox bug fix */
        transform: translateY(-100%);
    }
}

.custom-radios {
    margin: 7px 0;
}

.custom-radios div {
    display: inline-block;
}

.custom-radios input[type="radio"] {
    display: none;
}

.custom-radios input[type="radio"] + label {
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.custom-radios input[type="radio"] + label span {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    line-height: 44px;
}

.custom-radios input[type="radio"] + label span img {
    opacity: 0;
    transition: all .3s ease;
}

.custom-radios input[type="radio"]#color-1 + label span {
    background-color: #2ecc71;
}

.custom-radios input[type="radio"]#color-2 + label span {
    background-color: #3498db;
}

.custom-radios input[type="radio"]#color-3 + label span {
    background-color: #f1c40f;
}

.custom-radios input[type="radio"]#color-4 + label span {
    background-color: #e74c3c;
}

.custom-radios input[type="radio"]:checked + label span img {
    opacity: 1;
}


/*Theme Settings*/

#themesList #tabs .theTab .theHeader {
    float: right;
    margin-bottom: 10px;
    width: 100%;
    background: #f5eaff;
    padding: 5px;
}

#themesList #tabs .theTab .theHeader input[type='radio'] {
    float: right;
    height: 150px;
    width: 20px;
}

#themesList #tabs .theTab .theHeader img {
    width: 50%;
    float: left;
}

#themesList #tabs .theTab .theHeader label {
    float: right;
    margin-top: 70px;
    font-size: 13px;
    font-weight: 700;
}

input#headerImage {
    display: none;
}

#upload-image {
    background: #f35549;
    padding: 10px 10px 15px 10px;
    border-radius: 5px;
    margin: 56px 20px 0 0 !important;
    color: #fff;
}

#upload-image svg {
    fill: #fff;
}

#themesList #tabs .theTab h3 {
    font-size: 15px;
    margin-bottom: 10px;
    background: #8741ca;
    padding: 10px;
    margin-top: 50px;
    color: #FFF;
}
#tabs-5{
    background: #f5eaff;
}

#themesList .themePrice {
    margin: 10px 0 30px 0;
    text-align: center;
}

p.themePrice-t {
    font-size: 12px;
    font-weight: 900;
    line-height: 22px;
    margin-bottom: 30px;
    color: #d32f2f;
    text-align: justify;
}

#themesList .themePrice b {
    font-size: 15px;
    float: right;

}

#themesList .themePrice span {
    font-size: 14px;
    float: right;
    color: #d32f2f;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 5px;
}

#themesList .themePrice i {
    font-size: 13px;
    float: right;
    text-decoration: line-through;
    color: #9c9c9c;
}

#themeCodesParent {
    display: none;
    background: #8741ca;
    margin-top: 15px;
    padding: 5px;
}

#themeCodesParent #Des {
    padding: 5px;
    color: #ffffff;
    line-height: 2;
    font-size: 14px;
}

#themeCodesParent #Codes {
    width: 100%;
    height: 100%;
    direction: ltr;
}

/********************************1 Day Tours******************************/

#oneDayTourMain {
    margin-top: 30px;
}

#oneDayTourMain label {
    margin-right: 10px;
    margin-left: 5px;
    display: inline-block;
    min-width: 50px;
}

#oneDayTourMain h1 {
    padding-right: 5%;
    font-size: 21px;
    font-weight: 700;
    color: #f35549;
}

.choosePic {
    float: none !important;
    background: #4FC3F7 !important;
}

#pictureChooser {
    background: #fff;
    width: 80%;
    height: 80%;
    position: absolute;
    top: 10%;
    z-index: 2;
    left: 10%;
    border-radius: 5px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    display: none;
    overflow-y: scroll;
}

#pictureChooser h4 {
    font-size: 15px;
    margin: 10px 0;
    color: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.imgGallery label {
    display: block !important;
    width: 30%;
    float: right;
    margin: 8px;
    position: relative;
}

.imgGallery label .deleteImg {
    background: #f44336;
    padding: 5px;
    font-size: 14px;
    color: #fff;
    position: absolute;
    right: -5px;
    top: -5px;
    border-radius: 3px;
    cursor: pointer;
}

.imgGallery input[type='radio'] {
    display: none;
}

.imgGallery input[type=radio] + img {
    cursor: pointer;
}

.imgGallery input[type=radio]:checked + img {
    transition: 0.1s ease;
    transform: scale(0.9);
    opacity: 0.7;
}

#alertnoactive {
    background: #f35549;
    color: #fff;
    border-radius: 3px;
    text-align: center;
}

.button {
    margin-left: 10px;
}

.button:hover {
    background: #eae8e8;
}

.imgGallery img {
    max-width: 100%;
    height: auto;
}


/********************************* Tour Package ******************************/

.PTourMain label {
    margin-right: 10px;
    margin-left: 5px;
    display: inline-block;
    min-width: 85px;
}

.imgPrv {
    margin: 15px;
}

.imgPrv img {
    max-width: 100%;
    height: 200px;
}

/********************************** Login Page*********************************/

#userMain {
    width: 70%;
    margin: 30px auto;
    background: #fff;
    border-radius: 20px;
    height: 500px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
}

#userMain #right {
    width: 45%;
    float: right;
    padding: 20px;
}

#userMain #left {
    width: 50%;
    float: left;
    background: url(../images/login_bg2.jpg) left top no-repeat;
    height: inherit;
    border-radius: 20px 0 0 20px;
    background-size: 100% 100%;
}

#userMain form {
    /*background: #E0E0E0;*/
    overflow: hidden;
    padding: 15px;
}

#userMain h1 {
    font-size: 19px;
    text-align: center;
    margin-bottom: 20px;
}

#userMain .registerIt {
    display: block;
    margin-top: 15px;
    text-align: center;
}

#userMain .registerIt b {
    font-weight: bold;
    color: #67993d;
}

#userMain input[type="email"], #userMain input[type="text"], #userMain input[type="url"], #userMain input[type="tel"] {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    direction: ltr;
}

#userMain input[type="tel"] {
    margin-top: 10px;
}

#userMain input[type="email"]::placeholder, #userMain input[type="password"]::placeholder, #userMain input[type="text"]::placeholder, #userMain input[type="url"]::placeholder {
    direction: rtl;
}

#userMain input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    direction: ltr;
}

#userMain input[type="submit"] {
    float: none;
    display: block;
    margin: 20px auto 0 auto;
    width: 100%;
    border-radius: 20px;
    padding: 8px;
}

#msgAlert {
    background: #fff;
    position: absolute;
    padding: 8px;
    border-radius: 8px;
    width: 33%;
    margin-right: 33%;
    min-height: 25%;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
    top: 33%;
    z-index: 2;
}

#msgAlert #close {
    font-size: 20px;
    font-family: cursive, sans-serif;
    color: #8a8989;
    float: right;
    cursor: pointer;
    margin: 3px;
}

#msgAlert #content {
    width: 90%;
    margin: 0 auto;
    padding: 20px 10px;
    font-size: 15px;
    color: #242424;
    text-align: center;
    line-height: 1.5;
}

#overlay {
    background: rgba(0, 0, 0, 0.25);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    display: none;
}

/************************ No Active Page ***************************/

#buyButtons {
    width: 30%;
    margin: 0 auto;
}

#buyButtons #buy {
    width: 45%;
    float: right;
}

#buyButtons #test {
    width: 45%;
    float: left;
    background: #00BCD4;
}

/************************ Slider ************************************/

.sliderBox {

}

.sliderBox h3, .instaBio h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #757575;
    float: right;
    font-weight: 700;
}

#addNewSlide, #addNewButton, #addNewPers {
    background: #29B6F6;
    float: left;
    padding: 15px;
    font-size: 15px;
    color: #fafafa;
    margin-left: 10px;
    border-radius: 4px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

#addNewSlide :hover, #addNewButton:hover,

,
#addNewPers:hover {
    background: #2aaaea;
}

/********************** Insta Bio ************************/

.aBtn {
    background: #ECEFF1;
    padding: 10px;
    border: 1px solid #CFD8DC;
    border-radius: 6px;
    margin-bottom: 8px;
}

.aBtn table tbody {
    background: transparent;
    border-right: 0 none;
    border-left: 0 none;
}

.aBtn table tr > td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


/* تنظیمات اولیه */

#userFullName, #userAgencyName, #userPhoneNumber, #userwhatsupnumber, #userMobileNumber, #useraparat, #usertelegramid {
    width: 100%;
}

#name-setting {
    font-size: 13px;
    color: #f5eaff;
    background: #8741ca;
    width: 100%;
    padding: 7px;
    margin-right: 0px !important;
}

.fasele-20 {
    margin-top: 20px
}

.fasele-30 {
    margin-top: 30px;
}

.fasele-60 {
    margin-top: 60px;
}

.widthptour4 {
    display: inline-block;
    width: 100%;
    min-height: 75px;
    height: auto;
    background: #f5eaff;
    padding: 10px;
    margin: .6% .4%;
    text-align: right;
    color: #8741ca;
    font-weight: 700;
}


.widthptour4 input[type="text"] {
    margin-top: 10px;
    width: 30%
}

.widthptour4 textarea {
    margin-top: 10px;
    width: 100%
}

.widthptour4 select {
    width: 30%
}


.width33 {
    display: inline-block;
    width: 32%;
    background: #f5eaff;
    margin: .6% .4%;
}

.width100 {
    width: 98.3%;
    background: #f5eaff;
    padding: 7px;
    margin: 0 0.4%;
}

.line-red {
    background: #8741ca;
    height: 2px;
    width: 96%;
    margin: 0 auto;
}

td.no-avtice {
    background: #e74c3c;
    width: auto;
    height: auto;
}

#menu-btn, #close-btn {
    display: none;
}

#alert {
    background: #e74c3c;
    font-size: 15px;
    margin: 25px;
    padding: 7px;
    border-radius: 4px;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    from {
        opacity: 0.5
    }
    to {
        opacity: 1
    }
}

/*********** respansive ************/

@media only screen and (max-width: 900px) {
    #infoBoxes .infoBox {
        width: 97%;
    }

    #sideBar {
        width: 30%;
    }

    #main {
        width: 70%;
    }
}

@media only screen and (max-width: 600px) {
    .widthptour4 input[type="text"]{
        width: 60%;
    }
    #topNav #profileImg #hiddenBox{
        width:100%;
    }
    #themesList #tabs .theTab .theHeader img {
        width: 100%
    }

    #themesList .theTheme, .width33 {
        width: 100%;
        margin-right: 0;
    }

    #menu-btn {
        display: block;
        background: #ba41ca;
        padding: 20px;
        text-align: center;
        font-size: 15px;
        margin: 5px;
        color: #fff;
    }

    #main {
        width: 100%;
    }

    #sideBar {
        display: none;
        position: absolute;
        z-index: 5;
        width: 100%;
    }

    #close-btn {
        display: block;
        position: absolute;
        background: #e74c3c;
        color: #fff;
        padding: 8px 9px;
        left: 0px;
        margin-left: 10px;
        width: 25px;
        height: 25px;
        border-radius: 20px;
        z-index: 10;
    }

    #alert {
        margin: 6px;
        text-align: center;
    }
}


