@charset "utf-8";
/*import*/

/*#region global */
body {
  color: #636060;
  background-color: #F3F3F3;
    direction: ltr;
}
/*#endregion */
/*#region Colors */
.cities-spr{
    height: 300px;
    background: url(../../images/cities/sprite.jpg) no-repeat;}
.slider-arrow-right{
    top: 128px;
    position: absolute;
    border: none;
    background-color: #0BB5E2;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    right: -20px;
    border: 5px solid #F3F3F3;
}
.slider-arrow-right>i,.slider-arrow-left>i{
    color: white;
    font-size: 17px;
}
.slider-arrow-left{
    top: 128px;
    position: absolute;
    border: none;
    background-color: #0BB5E2;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    left: -20px;
    border: 5px solid #F3F3F3;
}
.owl-nav .disabled{
    display: none;
}

.color-light-blue {
  color: #0BB5E2 !important;
}

  .color-light-blue:hover {
    color: #0BB5E2 !important;
  }

  .color-light-blue:active {
    color: #0BB5E2 !important;
  }

  .color-light-blue:visited {
    color: #0BB5E2 !important;
  }

.color-Cyan {
  color: #17CEC4 !important;
}

  .color-Cyan:hover {
    color: #17CEC4 !important;
  }

  .color-Cyan:active {
    color: #17CEC4 !important;
  }

  .color-Cyan:visited {
    color: #17CEC4 !important;
  }

/*#endregion */
/*#region intro CSS */
.intro h2 {
  padding-top: 90px;
  text-shadow: 3px 0px 3px rgba(81, 81, 81, 0.67);
  font-size: 3vw;
}

.intro p {
  text-shadow: 3px 0px 3px rgba(81, 81, 81, 0.67);
  font-size: 3vw;
}

.intro-input {
  text-align: center;
  border: 2px solid #C1BFBF !important;
  color: #A5A1A1;
  padding-left: 30px;
}

  .intro-input:focus {
    outline: none !important;
    border: 1px solid #C1BFBF;
    box-shadow: 0 0 5px #17CEC4;
  }

.intro-bg {

}
/*#endregion */
/*#region borders */
.discount-badge {
  padding: 8px 8px;
  color: #fff;

  font-size: 1.286rem;
  line-height: 1.222;
  border-radius: 24px;
  position: absolute;
  top: -14px;
  right: 4px;
  background-color: #ef5662;
  z-index: 2;
  border: 1px solid #ef5662;
}

.hr-D3D3D3 {
  border-top: 1px solid #D3D3D3;
}
/*#endregion */
/*#region Buttons */
/* Radial Out */
.btn-Cyan {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to right, #17CEC4 0%, #0BB5E2 100%);
  color: white;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

  .btn-Cyan:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, #16c5bb 0%, #1ea6ca 100%);
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }

  .btn-Cyan:hover, .btn-Cyan:focus, .btn-Cyan:active {
    color: white;
  }

    .btn-Cyan:hover:before, .btn-Cyan:focus:before, .btn-Cyan:active:before {
      -webkit-transform: scale(2);
      transform: scale(2);
    }

/* Shutter In Vertical */
.btn-light-blue {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background-color: #17a5e1;
  border-color: #3EC6FF;
  color: #fff;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

  .btn-light-blue:before {
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #3EC6FF;
    border-color: #3EC6FF;
    color: #fff;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }

  .btn-light-blue:hover, .btn-light-blue:focus, .btn-light-blue:active {
    color: white;
  }

    .btn-light-blue:hover:before, .btn-light-blue:focus:before, .btn-light-blue:active:before {
      -webkit-transform: scaleY(0);
      transform: scaleY(0);
    }

.btn-red {
  color: #ffffff;
  background-color: #F8837B;
  border-color: #F8837B;
}

  .btn-red:hover,
  .btn-red:focus,
  .btn-red:active,
  .btn-red.active,
  .open .dropdown-toggle.btn-red {
    color: #ffffff;
    background-color: #F0554A;
    border-color: #F8837B;
  }

  .btn-red:active,
  .btn-red.active,
  .open .dropdown-toggle.btn-red {
    background-image: none;
  }

  .btn-red.disabled,
  .btn-red[disabled],
  fieldset[disabled] .btn-red,
  .btn-red.disabled:hover,
  .btn-red[disabled]:hover,
  fieldset[disabled] .btn-red:hover,
  .btn-red.disabled:focus,
  .btn-red[disabled]:focus,
  fieldset[disabled] .btn-red:focus,
  .btn-red.disabled:active,
  .btn-red[disabled]:active,
  fieldset[disabled] .btn-red:active,
  .btn-red.disabled.active,
  .btn-red[disabled].active,
  fieldset[disabled] .btn-red.active {
    background-color: #F8837B;
    border-color: #F8837B;
  }

  .btn-red .badge {
    color: #F8837B;
    background-color: #ffffff;
  }

.sepanja-btn {
  border-radius: 8px;
  border: 1px solid #17CEC4;
  background-color: white;
  opacity: 1;
  transition: 0.3s;
  color: #0BB5E2;
}

  .sepanja-btn:hover {
    color: #fff;
    background: linear-gradient(141deg,#0BB5E2 25%,#2bcebc 51%,#17CEC4 75%);
  }

.btn-gradient:hover, .btn-gradient:focus, .btn-gradient:active, .btn-gradient.active, .open .dropdown-toggle.btn-gradient {
  border-color: #17CEC4;
  color: #17CEC4 !IMportant;
  background: #fff;
}
/*Outline Buttons*/
.btn-outline {
  background-color: transparent;
  color: inherit;
  transition: all .5s;
}

.btn-default {
  color: #636060;
  background-color: #fff;
  border-color: #707070;
}
/*Outline Buttons*/
/*#endregion */
/*#region Cards */
.thumbnail {
  padding: 0;
}
/*#endregion */
/*#region Index Slider */


/* jssor slider loading skin spin css */
.jssorl-009-spin img {
  animation-name: jssorl-009-spin;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


.jssorb051 .i {
  position: absolute;
  cursor: pointer;
}

  .jssorb051 .i .b {
    fill: #fff;
    fill-opacity: 0.5;
  }

  .jssorb051 .i:hover .b {
    fill-opacity: .7;
  }

.jssorb051 .iav .b {
  fill-opacity: 1;
}

.jssorb051 .i.idn {
  opacity: .3;
}

.jssora051 {
  display: block;
  position: absolute;
  cursor: pointer;
}

  .jssora051 .a {
    fill: none;
    stroke: #fff;
    stroke-width: 360;
    stroke-miterlimit: 10;
  }

  .jssora051:hover {
    opacity: .8;
  }

  .jssora051.jssora051dn {
    opacity: .5;
  }

  .jssora051.jssora051ds {
    opacity: .3;
    pointer-events: none;
  }

/*#endregion */
/*#region tilt */
.tilt-img {
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 47px rgba(0, 0, 0, 0.2);
}
/*#endregion */
/*#region rating star */
.rated-start .checked {
  color: #FA9D4C;
}


.rating {
  border: none;
  float: left;
}

  .rating > input {
    display: none;
  }

  .rating > label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
  }

  .rating > .half:before {
    content: "\f089";
    position: absolute;
  }

  .rating > label {
    color: #ddd;
    float: right;
  }

  /***** CSS Magic to Highlight Stars on Hover *****/

  .rating > input:checked ~ label, /* show gold star when clicked */
  .rating:not(:checked) > label:hover, /* hover current star */
  .rating:not(:checked) > label:hover ~ label {
    color: #FA9D4C;
  }
    /* hover previous stars in list */

    .rating > input:checked + label:hover, /* hover current star when changing rating */
    .rating > input:checked ~ label:hover,
    .rating > label:hover ~ input:checked ~ label, /* lighten current selection */
    .rating > input:checked ~ label:hover ~ label {
      color: #FA9D4C;
    }
/*#endregion */
/*#region margings*/

.margin-minus-60px-top {
  margin-top: -60px;
}

.margin-minus-40px-top {
  margin-top: -40px;
}

.margin-minus-5px-top {
  margin-top: -15px;
}

.img-margin-minus-bottom {
  margin-bottom: -20px;
}

.img-margin-minus-85px-bottom {
  margin-bottom: -85px;
}
/*#endregion */
/*#region app download
*/


.app-dnl {
  width: 100%;
  min-height: 10px;
  background-color: white
}

  .app-dnl section {
    background-image: url('../../images/backgrounds/bg.png') !important;
    background-size: cover
  }
/*#endregion */
/*#region footer
*/
footer {
  background-image: url('../../images/backgrounds/22.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position-y: bottom;
}

  footer h6 {
    margin-bottom: 20px;
  }

.footer_ul_amrc {
  margin: 0px;
  list-style-type: none;
  font-size: 14px;
  padding: 0px 0px 10px 0px;
}

  .footer_ul_amrc li {
    line-height: 3;
  }

    .footer_ul_amrc li a {
      color: #636060;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      -webkit-transition: all 0.2s linear;
      transition: all 0.2s linear;
    }

      .footer_ul_amrc li a:hover {
        color: #969696;
        text-decoration: none;
      }
/*#endregion */
/*#region intro
*/

.intro-p {
  font-family: IRANYekan;
  text-shadow: 3px 0px 3px rgba(81, 81, 81, 0.67) !important;
  font-size: 7vh;
  color: white !important
}
/*#endregion */
/*#region panels
*/


.panel-heading span {
  margin-top: -20px;
  font-size: 15px;
}
/*#region filter
*/


.filter-button-wrappers {
  position: fixed;
  background: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  box-shadow: 3px 2px 10px 0 rgba(0,0,0,.4);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  height: 50px;
  display: flex;
    z-index: 99999;
}
/*#endregion */
/*#region tooltipS
*/


.tooltip {
  font-family: IRANYekan;
  font-size: 12px;
}
/*#endregion */
/*#region smooth-scroll */

@media (max-width: 978px) {
  .smooth-panel {
    margin-top: 30px
  }
}

@media (min-width: 768px) {
  .smooth-panel {
    margin-top: 10px
  }
}

/*#endregion */
/*#region place page detail
*/


.plc-list ul {
  list-style-type: none;
}
/*#endregion */
/*#region login modal
*/


.modal-header-log {
  float: right;
  text-align: center;
  margin: 0;
  padding-right: 2px;
  padding-left: 0;
  padding-top: 0;
}

.modal-header-reg {
  float: right;
  text-align: center;
  margin: 0;
  padding-right: 0;
  padding-left: 0px;
  padding-top: 0;
}

.nav-tabs > li > a {
  color: #3EC6FF
}
/*#endregion */
/*#region host page
*/
.bg-F3F3F3 {
  background-color: #F3F3F3;
}

#intro {
  width: 100%;
  position: relative;
  background-size: cover;
  padding: 150px 0 50px 0;
}

  #intro .intro-info h2 {
    color: #fff;
    text-shadow: 3px 0px 3px rgba(81, 81, 81, 0.67);
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 700;
    line-height: 5rem;
    text-align: center;
  }

.host-panel .panel-default > .panel-heading {
  color: #333;
  background-color: #fff !important;
  border-color: #0BB5E2 !important;
  border-width: 1px !important;
  border-style: solid !important;
}

  .host-panel .panel-default > .panel-heading + .panel-collapse > .panel-body {
    border: 1px solid #0BB5E2;
  }
/*#endregion */
/*#region profile
*/


.user-dashbord hr {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
  border-color: #F3F3F3 !important;
}

.user-dashbord a {
  color: #444;
  transition: ease-in 0.2s
}

  .user-dashbord a:active {
    color: #17CEC4;
  }

  .user-dashbord a:hover {
    color: #17CEC4;
  }

.Quick-Shortcuts a {
  color: white;
  transition: ease-in 0.2s
}

  .Quick-Shortcuts a:hover {
    color: whitesmoke;
    transition: ease-in 0.2s
  }

.bg-0BB5E2 {
  background-color: #0BB5E2;
}

.bg-FF6868 {
  background-color: #FF6868
}

.bg-gradient-blue {
  background-image: linear-gradient(to right, #17CEC4 0%, #0BB5E2 100%);
}

.profile-frm .form-group label {
  font-weight: 400 !important;
  color: #636060 !important
}

.profile-frm input {
  border: 1px solid #C1BFBF !important;
  box-shadow: none !important;
  border-radius: 8px !important
}

.profile-frm textarea {
  border: 1px solid #C1BFBF !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  resize: none
}

.bootstrap-select > .dropdown-toggle {
  border-radius: 8px !important
}

.btn-3 {
  background-image: linear-gradient(180deg, #2af598 0%, #009efd 100%);
  color: white;
}

.spanred {
  color: red
}

.profile-table th, td {
  text-align: center;
}

.text-green {
  color: #0ABC27
}

.text-red {
  color: #F8837B
}

.text-orange {
  color: #FCCD4C
}

.text-cornflowerblue {
  color: cornflowerblue
}

.brd-0BB5E2 {
  border: 1px solid #0BB5E2;
}
/*#endregion */
/*#region 404
*/
#not-found {
  width: 100%;
  position: relative;
  background: url('../../images/backgrounds/404.png') center bottom no-repeat;
  background-size: cover;
  padding: 300px 0 300px 0;
}

  #not-found span {
    text-shadow: 3px 0px 3px rgba(81, 81, 81, 0.67);
    color: white;
    font-size: 4vh;
    font-weight: 500
  }
/*#endregion */
/*#region search drowpdown
*/

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
  color: #555;
  text-decoration: none;
  background-color: #e9e9e9;
  outline: 0;
  min-height: 50px !important;
  line-height: 3
}
/*#endregion */
/*#region order info */
.order-info {
  padding: 5%
}

  .order-info .table-responsive {
    border-radius: 9px;
    border: 1px solid #e7e7e7;
  }

  .order-info .table thead {
    background-color: #ededed;
  }
/*#endregion */
/*#region pment timeline */
/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
    direction: ltr;
}

  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #4c4c4c;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }

/* containerx around content */
.containerx {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

  /* The circles on the timeline */
  .containerx::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: white;
    border: 4px solid #1CAEC6;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }

/* Place the containerx to the left */
.left {
    left: 0;
}

/* Place the containerx to the right */
.right {
  left: 50%;
}

/* Add arrows to the left containerx (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid ;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right containerx (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containerxs on the right side */
.right::after {
  left: -12px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: #eee;
  position: relative;
  border-radius: 8px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  /* Place the timelime to the left */
  .timeline::after {
    left: 28px;
  }

  /* Full-width containerxs */
  .containerx {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

    /* Make sure that all arrows are pointing leftwards */
    .containerx::before {
      left: 60px;
      border: medium solid white;
      border-width: 10px 10px 10px 0;
      border-color: transparent white transparent transparent;
    }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

  /* Make all right containerxs behave like the left ones */
  .right {
    left: 0%;
  }
}



/*#endregion */
/*#region  social share
*/

.share-group {
  float: right;
  margin: 18px 25px 0 0;
}

.btn-group {
  display: inline-block;
  font-size: 0;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
}

.mobile-social-share ul {
  float: right;
  list-style: none outside none;
  margin: 0;
  min-width: 61px;
  padding: 0;
}

.share {
  min-width: 17px;
}

.mobile-social-share li {
  display: block;
  font-size: 18px;
  list-style: none outside none;
  margin-bottom: 3px;
  margin-left: 4px;
  margin-top: 3px;
}

.btn-share {
  background-color: #BEBEBE;
  border-color: #CCCCCC;
  color: #333333;
}

.btn-twitter {
  background-color: #3399CC !important;
  width: 51px;
  color: #FFFFFF !important;
}

.btn-facebook {
  background-color: #3D5B96 !important;
  width: 51px;
  color: #FFFFFF !important;
}

.btn-facebook {
  background-color: #3D5B96 !important;
  width: 51px;
  color: #FFFFFF !important;
}

.btn-google {
  background-color: #DD3F34 !important;
  width: 51px;
  color: #FFFFFF !important;
}

.btn-linkedin {
  background-color: #1884BB !important;
  width: 51px;
  color: #FFFFFF !important;
}

.btn-pinterest {
  background-color: #CC1E2D !important;
  width: 51px;
  color: #FFFFFF !important;
}

.btn-mail {
  background-color: #FFC90E !important;
  width: 51px;
  color: #FFFFFF !important;
}

.caret {
  border-left: 4px solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-top: 4px solid;
  display: inline-block;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  width: 0;
}

#socialShare {
  max-width: 60px;
  margin-bottom: 18px;
}

  #socialShare > a {
    padding: 6px 10px 6px 10px;
  }


/*#endregion */
/*#region rating star
*/


.rating {
  margin-left: 30px;
}


.skillLine {
  display: inline-block;
  width: 100%;
  min-height: 90px;
  padding: 3px 4px;
}

skillLineDefault {
  padding: 3px 4px;
}
/*#endregion */
.li-width-100>li{
    width: 100% ;
}
.li-width-100>li:nth-child(2){
    color: #adadad;
    font-weight: 500;
    font-size: 16px;
}
.li-width-100>li:nth-child(1){
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 700;
}
.max-width100{max-width: 100%}
.width100{width: 100%}
.min-height60{min-height: 60px;}


.blur-main {
  background-color: rgba(0,0,0, 0.4);
  color: white;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  right: -166px;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 30%;
  padding: 20px;
  text-align: center;
}
@media only screen and (min-width: 600px) {
    .bck-image{
        background-image:url('../../images/backgrounds/bg-desktop.webp');
        background-size:cover;
        height: 560px;
        background-position: bottom right;
    }
}
.btn-main,.btn-main:hover{
  width: 100% !important;
  border-radius: 6px;

  color: white;
}
.red-carpet{
  background-color: #e3322c!important;
}
.red-carpet:hover{
  background-color: #e30808 !important;
}
@media only screen and (max-width: 600px) {

    .calendar-show{
        border: none;
        width: 100%;
        background-color: white;
    }
    .margin-bt-main{
        margin-bottom: 95px;
    }
    .bck-image{
        background-image:url('../../images/backgrounds/bg-mobile.webp');
        background-size:cover;
        height: 470px;
        background-position:center
    }
  .blur-main{

    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0); /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 3px;
    text-align: center;

  }
    .main-place-intro{
        margin-left: 4.16%;
    }
}
.n-p {
    position: absolute;
    color: white;
    font-size: small;
    leftt: 20px;
    bottom: 10px
}

.n-img {
    margin-top:5px;
    margin-bottom:5px;
    border-radius: 10px;
    background-repeat: no-repeat!important;
    background-size: cover!important;
}
.n-img > div{
    padding: 2%;
}
.rest-image{
    background-image: url("../../images/restaurants/image.png");
}
.comment-owf{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}
.calendar-show{
    padding: 15px 10px 15px 10px!important;
    border: none!important;
    width: 70%;
    background-color: white!important;
}
.more-cities{
  color: white;
  margin-top: -40px;
  font-weight: 200;
  width: 100%;
  display: flex;
  flex-direction: column;
  -moz-box-align: center;
  align-items: center;
  position: absolute;
  bottom: 24px;
  right: 0px;
  z-index: 1;
}
.more-cities >h2{
    font-size: 20px!important;
}
.show-city{
    color: white!important;
}
.main-image{
    height: 300px!important;
}
@media only screen and (max-width: 600px) {
    .main-image {
        height: 240px !important;
    }
}
.ndk-nav{margin-bottom: 15px;
    background: #fff;
    border: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
    overflow: hidden;}
.user-image{background-image: linear-gradient(-135deg,#21254e,#232c58 19%,#232c58 0,#232c58 0,#232d5a 23%,#232d5a 0,#24305d 40%,#24305d 0,#24305d 0,#2b4a83 87%);
    text-align: center;
    position: relative;
    top: -73px;
    width: 140%;
    height: auto;
    margin-left: -20%;
    margin-bottom: -50px;
    padding-top: 65px;
    border-radius: 700px/251px;
    padding-bottom: 5px;
    color: #fff;}
.user-image2{overflow: hidden;
    background-image: linear-gradient(-135deg,#21254e,#232c58 19%,#232c58 0,#232c58 0,#232d5a 23%,#232d5a 0,#24305d 40%,#24305d 0,#24305d 0,#2b4a83 87%);
    text-align: center;
    position: relative;
    top: -105px;
    width: 140%;
    height: auto;
    margin-left: -20%;
    margin-bottom: -100px;
    padding-top: 0px;
    border-radius: 700px/251px;
    padding-bottom: 5px;
    color: #fff;}
.right-panel-img{margin-top: 20px;}
img {border: 0;
    transition: all 0.3s ease-out;
}
.right-panel-img img {border: 4px solid #6788ea;
    border-radius: 100%;
    padding: 4px;
    margin: 0;
    width: auto;
}
.user-name {
    color: #fff;
    text-align: center;
    font-size: 15px;
    margin-top: 8px;
}
.user-level {
    font-size: 12px !important;
    margin-top: -2px !important;
    margin-bottom: 10.1px;
}
.ndk-nav li.rksd-current {
    border-left: 3px solid #6788ea;
}
.ndk-nav li {
    margin-bottom: 0px;
    font-size: 13px;
    background-color: rgba(255, 255, 255, 1);
}
.ndk-nav li, .ndk-nav li a, .ndk-nav li .dkd-icon {
    transition: all 0.2s ease 0s;
}
ul, li {
    border: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}
.ndk-nav li.rksd-current a {
    opacity: 1;
}
.ndk-nav li a {
    padding: 15px 20px;
    display: block;
    color: #000;
    opacity: 1;
}
.ndk-nav li i {
    color: #777D84;
    font-size: 20px;
    margin-left: 9px;
    vertical-align: middle;
}
.ndk-nav li:hover {
    margin-left: 0px;
    background-color: #fafafa;
    border-left: 3px solid #6788ea;
}
.ndk-nav li:hover a, .ndk-nav li:hover i {
    color: #6788ea;
}
.fksd-t-img {
    background-size: cover;
    background-position: center center;
    padding: 15px 0 10px;
    background-position-y: -86px;
    border-radius: 4px;
    background: url(../../images/icons/header-blog.png) repeat, linear-gradient(to left, #68bcf7 0%, #6788ea 80%) !important;
}
.fkmd-iggg {
    padding: 5px 10px;
    display: inline-block;
    margin-left: 30px;
    position: relative;
    color: #3B384C;
    font-size: 13px;
    background-color: #FFF;
}
.fkmd-iggg::before {
    width: 30px;
    height: 1px;
    position: absolute;
    right: 100%;
    top: 50%;
    margin-top: -0.5px;
    content: " ";
    background-color: #FFF;
}
.alert {
    opacity: 1 !important;
    padding: 15px;
    font-size: 14px;
    background: #fbfbfb;
    border: #6788ea;
    color: #0bb5e2;
    text-align: left;
}
.profile-back{float: right;
    right: 5%;
    position: absolute;
    margin-top: -4%;}
.overflow-hidden{overflow: hidden;}
.z-index-9{z-index: 9;}
.z-index-8{z-index: 8;}
.right-panel-img2 {margin-top: 60px;}
.right-panel-img2 img {border: 4px solid #6788ea;
    border-radius: 100%;
    padding: 4px;
    margin: 0;
    width: auto;
}
.sidenav{
    height:100%;
    width:0;
    position:fixed;
    z-index:999999;
    top:0;
    left:0;
    overflow-x:hidden;
    transition:0.5s;
    padding-top:50px;
    background-color: #fff;
}
.sidenav a{
    text-decoration:none;
    display:block;
    transition:0.3s;
    margin:10px 0;
    padding:5px 28px;
    border-bottom:1px solid #fff;
    color: #fff;
    font-size: 14px;
}
.sidenav a:hover{color:#000000;}
.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: #eee;
    opacity: .8;
}
.closebtn{
    display: none;
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    padding: 5px;
    left: 4%;
    color: black;
}
.sidenav{
    margin-top: 53px;
}
.mobile-nav {
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    padding: 5px;
    left: 4%;
}
@media only screen and (min-width: 768px){
    .col-md-0 {
        display: none!IMportant;
    }
}
#waves {
    position: relative;
    height: 120px;
    width: 600px;
    background: #fff;
}
#waves:before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
    width: 0;
    height: 80px;
    background-color: white;
    right: -5px;
    top: 40px;
}
#waves:after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 20%;
    width: 615px;
    height: 120px;
    background-color: #0BB5E2 !important;
    left: 0;
    top: 30px;
}

@media only screen and (max-width: 600px){
  .main-search{
    margin-right: -3px;
    margin-left: -3px;
    height: 254px;
    margin-top: 296px;
    background-color: #F3F3F3;
    border-radius: 17px 17px 0 0;
  }
  .logo-name{
    float: left;
    font-size: 25px;
    padding-right: 11px;
    color: #0BB5E2;
  }
  .main-search>center>h1{
    color: black;
    font-size: 18px;
    line-height: 35px;
  }
  .intro-bg{
    background-image: none;
  }
  .btn-main{
    width: 100%;
    margin-top: 15px;
    border-radius: 26px;
    background-color: #0BB5E2 !important;
    color: white;
  }
  .intro-input {
    text-align: center;
    border: 1px solid #E8E3E3 !important;
    border-radius: 38px;
    height: 64px;

    padding-left: 30px;
    color: #000;
    font-weight: 500;
  }
}
@media only screen and (max-width: 640px) and (max-height: 812px){
  .main-page-cities{
    margin-top: 32%;
  }
}
@media only screen and (max-width: 640px) and (max-height: 667px){
  .main-page-cities{
    margin-top: 21%;
  }
}
input {
  font-size: 16px;
  transform-origin: top left;
}

.backlinks .home_first-search button {
  border-radius: 50px;
  min-width: 55px;
  width: 55px;
  height: 55px;
  background: #4d5c8b;
  box-shadow: 0 3px 10px rgba(0,102,255,.2);
  transition: .2s;
}
.mini__tools-container .home_first-search button {
  height: 100%;
  min-width: 120px;
  cursor: pointer;
  border: none;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06f;
  border-radius: 6px;
  box-shadow: 0 3px 1px -2px rgba(0,102,255,.2),0 2px 2px 0 rgba(0,102,255,.14),0 1px 5px 0 rgba(0,102,255,.12);
}
.backlinks .home_first-search button img {
  min-width: 31px;
  min-height: 22px;
}
.mini__tools-container .home_first-search button .loading {
  display: none;
  height: 30px;
}
.btn-mobile-search{
  border-radius: 50px;
  min-width: 40px;
  width: 50px;
  height: 50px;
  background-color: #e3322c !important;
  transition: .2s;
  position: absolute;
  top: 7px;
  right: 5px;
  border: none;


}
.load-search-arrow{
    transform: rotate(180deg);
}
.main-title{
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 19px;
}
.discount-badge {
    padding: 8px 8px;
    color: #fff;

    font-size: 1.286rem;
    line-height: 1.222;
    border-radius: 24px;
    position: absolute;
    top: -14px;
    right: 4px;
    background-color: #ef5662;
    z-index: 2;
    border: 1px solid #ef5662;
}
@media only screen  and(max-width: 600px){
    .discount-badge {
        padding: 15px 15px;
        color: #ef5662;
        font-size: 18px;
        font-size: 1.286rem;
        line-height: 1.222;
        /* letter-spacing: .5px; */
        border-radius: 30px;
        position: absolute;
        top: -11px;
        right: 5px;
        background-color: #fff;
        z-index: 2;
        border: 1px solid #ef5662;
    }
}
.reserve-btn{
    border: 1px solid red !important;
    color: white;
    background-color: #e2150b;
    font-weight: 500;
    border-radius: 6px;
}
.reserve-btn:hover{
    background-color: #e30808 !important;
    color: white;
}
.reserve-btn:focus{

    color: white;
}
.shk {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    animation-name: shakeMe;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes shakeMe {
    2%, 18% {
        transform: translate3d(-5px, 0, 0);
    }

    4%, 16% {
        transform: translate3d(5px, 0, 0);
    }

    6%, 10%, 14% {
        transform: translate3d(-5px, 0, 0);
    }

    8%, 12% {
        transform: translate3d(5px, 0, 0);
    }

    18.1% {
        transform: translate3d(0px, 0, 0);
    }
}
.icon-search {
  position: absolute;
  display: block;
  width: 23px;
  height: 20px;
  margin-top: -10px;
  font-size: 23px;
  line-height: 14px;
  color: #e30808;
  top: 50%;
  left: 5px;
}
@media  (max-width:600px){
  .icon-search {
    position: absolute;
    display: block;
    width: 23px;
    height: 20px;
    margin-top: -10px;
    font-size: 29px;
    line-height: 14px;
    color: #e30808;
    top: 42%;
    left: 9px;
  }
  .icon-search::placeholder{
    color: #1b1b1b;
  }
}
.cities-bck {
  position: absolute;
  bottom: 20px;
  right: 0px;
  width: 100%;
  height: 58.6%;
  opacity: 0.65;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03), rgb(0, 0, 0));
  z-index: 1;
  border-radius: 9px;
}
.load-search{
  position: absolute;
  right: 22px;
  top: 5px;
}
.load-search>img{
  width: 35px;
}
.ltr{
  direction: ltr!important;
}
.main-title{
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 19px;
}
.info-search{
    border-right: 1px solid #dce0e0;
    height: 60px;
    width: 25%;
    overflow: hidden;
    float: left;
}
.search-icon{
    font-size: 20px;
    margin-top: 5px;
}
.search-text{
    font-size: 9px;
    text-align: center;
}
.discountmark::after {
    content: "";
    position: absolute;
    left: 21px;
    bottom: -12px;
    width: 0;
    height: 0;
    border-top: 12px solid #e2150b;
    border-left: 21px solid
    transparent;
}
.discountmark::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -12px;
    width: 0;
    height: 0;
    border-top: 12px solid #e2150b;
    border-right: 21px solid
    transparent;
}
.discountmark {
    position: absolute;
    right: 10px;
    top: 0px;
    width: 42px;
    height: 42px;
    background: #e2150b;
    z-index: 1;
}
.discountmark strong {
    width: 100%;
    display: block;
    text-align: center;
    line-height: 22px;
    font-size: 22px;
    color:
        #fff;
    margin-top: 5px;
}
.discountmark small {
    font-size: 10px;
    color:#f4b133;
    line-height: 6px;
    width: 100%;
    display: block;
    text-align: center;
}
.price-bck{
    width: 116px;
    padding-left: 7px;
    height: 28px;
    background-color: #7b7878cc;
    position: absolute;
    /* top: 127px; */
    top: 192px;
    left: 0px;
    border-radius: 0 5px 5px 0;
    color: white;
}
.price-bck2{
    width: 116px;
    padding-left: 7px;
    height: 28px;
    background-color: #e2150b;
    position: absolute;
    /*top: 97px;*/
    top: 162px;
    left: 0px;
    border-radius: 0 5px 5px 0;
    color: white;
}
/************Loading************************/
div#wave {
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
div#wave .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 3px;
    background: #ffffff;
    animation: wave 1.3s linear infinite;
}
div#wave .dot:nth-child(2) {
    animation-delay: -1.1s;
}
div#wave .dot:nth-child(3) {
    animation-delay: -0.9s;
}

@keyframes wave {
    0%, 60%, 100% {
        transform: initial;
    }
    30% {
        transform: scale(1.3);
    }
}

/************Support************************/

.support{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    height: 52px;
    width: 0;

}
.pulse-button >a>img {
    width: 40px;
}
.pulse-button {
    background-color: #0BB5E2 !important;
    display: block;
    width: 50px;
    height: 50px;
    font-weight: light;
    font-family: 'Trebuchet MS', sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 50px;
    letter-spacing: -1px;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(#5a99d4, .5);
    -webkit-animation: pulse 1.5s infinite;
    overflow: hidden;
}
.pulse-button:hover {
    -webkit-animation: none;
}

@-webkit-keyframes pulse {
    0% {
    @include transform(scale(.9));
    }
    70% {
    @include transform(scale(1));
        box-shadow: 0 0 0 50px rgba(#5a99d4, 0);
    }
    100% {
    @include transform(scale(.9));
        box-shadow: 0 0 0 0 rgba(#5a99d4, 0);
    }
}
.social-img {
    width: 40px;
    height: 40px;
    background: url(../../images/sprite1.png) no-repeat;
}
.twitter {
    background-position: -110px 0px;
}
.youtube {
    background-position: -156px 0px;
}
.facebook {
    background-position: -51px 0px;
}
.aparat {
    background-position: -2px 0px;
}
.band-b {
    width: 110px;
    height: 136px;
    background: url(../../images/sprite8.png) no-repeat;
    background-position: -279px 0px;
}
.enamad {
    width: 90px;
    height: 136px;
    background: url(../../images/sprite8.png) no-repeat;
    background-position: -139px 0px;
}
.samandehi {
    width: 113px;
    height: 136px;
    background: url(../../images/sprite8.png) no-repeat;
    background-position: 0px 0px;
}
.cities-spr{
    height: 300px;
    background: url(../../images/cities/sprite.jpg) no-repeat;}
.display-none{display: none;}

.khan-sprite {
    width: 100px;
    height: 100px;
    background: url(../../images/Spriterst.jpg) no-repeat;
    background-position: 0px 0px;
}
.parhami-sprite {
    width: 100px;
    height: 100px;
    background: url(../../images/Spriterst.jpg) no-repeat;
    background-position: -100px 0px;
}
.sharze-sprite {
    width: 100px;
    height: 100px;
    background: url(../../images/Spriterst.jpg) no-repeat;
    background-position: -200px 0px;
}
.sofi-sprite {
    width: 100px;
    height: 100px;
    background: url(../../images/Spriterst.jpg) no-repeat;
    background-position: -300px 0px;
}
/************Style Search************************/
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


svg {
    overflow: visible;
}

.search {

}
.search:not(.active) {
    cursor: pointer;
}

.search-svg {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 58%;
}
.search-svg__path {
    fill: none;
    stroke: #000000;
    stroke-width: 1px;
}
.search-box{
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
}
.search-input {
    position: relative;
    width: 24rem;
    height: 40px;
    padding: 1.2rem 7px 1.2rem 2.5rem;
    border: none;
    font-size: 1.6rem;
    color: #000000;
    z-index: -1;
    border: 1px solid gray;
    border-radius: 5px;
    direction: ltr;
    font-size: 16px;
}

.search-input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-weight: bold;
}
.search-input::-moz-placeholder { /* Firefox 19+ */
    font-weight: bold;
}
.search-input:-ms-input-placeholder { /* IE 10+ */
    font-weight: bold;
}
.search-input:-moz-placeholder { /* Firefox 18- */
    font-weight: bold;
}

.search-input.visible {
    z-index: auto;
    opacity: 1;
}

.search-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    z-index: -1;
}
.search-close.visible {
    z-index: auto;
}
.search-close.visible:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 1;
    transition: opacity 0.1s, -webkit-transform 0.2s cubic-bezier(0.73, 0.14, 0.4, 1.58);
    transition: transform 0.2s cubic-bezier(0.73, 0.14, 0.4, 1.58), opacity 0.1s;
    transition: transform 0.2s cubic-bezier(0.73, 0.14, 0.4, 1.58), opacity 0.1s, -webkit-transform 0.2s cubic-bezier(0.73, 0.14, 0.4, 1.58);
}
.search-close.visible:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 1;
    transition: opacity 0.1s 0.2s, -webkit-transform 0.2s 0.2s cubic-bezier(0.73, 0.14, 0.4, 1.58);
    transition: transform 0.2s 0.2s cubic-bezier(0.73, 0.14, 0.4, 1.58), opacity 0.1s 0.2s;
    transition: transform 0.2s 0.2s cubic-bezier(0.73, 0.14, 0.4, 1.58), opacity 0.1s 0.2s, -webkit-transform 0.2s 0.2s cubic-bezier(0.73, 0.14, 0.4, 1.58);
}
.search-close:before, .search-close:after {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 100%;
    height: 0.6rem;
    background: #000000;
    border-radius: 0.5rem;
    opacity: 0;
}
.search-close:before {
    -webkit-transform: rotate(-45deg) translateX(2rem);
    transform: rotate(-45deg) translateX(2rem);
    transition: opacity 0.1s 0.1s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.1s 0.1s;
    transition: transform 0.2s, opacity 0.1s 0.1s, -webkit-transform 0.2s;
}
.search-close:after {
    -webkit-transform: rotate(45deg) translateX(2rem);
    transform: rotate(45deg) translateX(2rem);
    transition: opacity 0.1s 0.3s, -webkit-transform 0.2s 0.2s;
    transition: transform 0.2s 0.2s, opacity 0.1s 0.3s;
    transition: transform 0.2s 0.2s, opacity 0.1s 0.3s, -webkit-transform 0.2s 0.2s;
}
@media (max-width: 600px){
    .main-title{
        color: black;
    }
}
.mobile-menu{

    height: 100%;
    margin-bottom: 0px;
}
.mobile-menu>li>a{
    color: #484848;;
}
.new_house{
    border:1px solid #0BB5E2;
    color: #0BB5E2!important;
    width: 190px;
    border-radius: 8px;
}
.navbar-nav > li > a{
    line-height: 30px;
}
nav{
    min-height: 60px!important;
}
.color-black{
    color: black;
}
@media(max-width: 600px){
    .modal-dialog {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .modal-content {
        height: auto;
        min-height: 100%;
        border-radius: 0;
    }
    .mobile-login{
        margin-top: 100px;
    }
    .mobile-login-header{
        margin-top: 50px;
    }
    .logo-mob{
        display: flex;
        margin: 0 auto;
    }
    .login-btn{
        width: 90%;
        border-radius: 50px;
        height: 56px;
        text-align: center;
        margin-right: 5%;
        background: #0BB5E2;
        border: 1px solid #0BB5E2;
        color: white;
    }
    .login-input{
        width: 90%;
        margin-right: 5%;
        border-radius: 10px;
        border: 1px solid black;
        color: black;
        height: 43px;
        font-size: 16px;
        transform-origin: top left;
    }
}
@media (min-width: 600px){
    .login-btn{
        width: 100%;
        border-radius: 50px;
        height: 50px;
        text-align: center;
        background: #0BB5E2;
        border: 1px solid #0BB5E2;
        color: white;
    }
    .login-input{
        width: 100%;
        border-radius: 10px;
        border: 1px solid black;
        color: black;
        height: 43px;
    }
}
.login-btn:hover{
    border: 1px solid #0BB5E2;
    background: #0BB5E2;
    color: white;
}
.btn-search{
    border: 1px solid #0bb5e2;
    width: 100%;
    background: white;
    height: 45px;
    color: #0bb5e2;
    font-weight: 700;
    border-radius: 18px;
}
.btn-search:hover{
    border: 1px solid #0bb5e2;
    width: 100%;
    background: #0bb5e2;
    height: 45px;
    color: white;
    font-weight: 700;
    border-radius: 18px;
}
@media (max-width: 600px){
    .price-bck{
        width: 116px;
        padding-left: 7px;
        height: 28px;
        background-color: #7b7878cc;
        position: absolute;
        top: 127px;
        right: 3px;
        border-radius: 5px 0 0 5px;
        color: white;
    }
    .price-bck2{
        width: 116px;
        padding-left: 7px;
        height: 28px;
        background-color: #e2150b;
        position: absolute;
        top: 97px;
        right: 3px;
        border-radius: 5px 0 0 5px;
        color: white;
    }
}
.info-search{
    border-right: 1px solid #dce0e0;
    height: 60px;
    width: 25%;
    overflow: hidden;
    float: right;
}
.search-icon{
    font-size: 20px;
    margin-top: 5px;
}
.search-text{
    font-size: 9px;
    text-align: center;
}

.city-footer{
    border: 1px solid #3EC6FF;
    padding: 3px;
    border-radius: 5px;
    margin-right: 6px;
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
}
.city-footer>a{
    text-decoration: none;
    color: black;
    cursor: pointer;
}
@media(max-width: 762px){
    .main-slider{
        width: 90%;
        margin-right: 5%;
    }
}
.height-68{height: 68px;}

.search-thumbnail{
  height: 220px;
  width: 100%;
  -webkit-border-radius: 5px 5px 0 0 ;
  -moz-border-radius: 5px 5px 0 0 ;
  border-radius: 5px 5px 0 0 ;
}

.landing-img{width: 100%;border-radius: 16px;height: 210px;}
.landing-title{display: block;position: absolute;top: 0;width: calc(100% - 15px);height: 100%;color: #fff;background: rgba(0, 0, 0, 0.35);padding: 20px;border-radius: 16px;font-size: 16px;}
