﻿/*
@import this file directly into your existing Scss files to use these mixins
*/
/*****Shared**********/
.about-section {
  background-image: url(/images/muscular-system.jpeg);
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  background-size: contain;
}

.poem-container {
  display: block;
  padding: 6% 3%;
  position: relative;
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
}
.poem-container .by {
  font-size: 0.8em;
}

.about-us {
  background-color: rgba(255, 255, 255, 0.8);
  padding-bottom: 100px;
}
.about-us .main-title {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.about-us .main-title .line-left {
  background: gray;
  height: 2px;
  flex: 1;
  margin-right: 10px;
}
.about-us .main-title .line-right {
  background: gray;
  height: 2px;
  flex: 1;
  margin-left: 10px;
}
.about-us .main-title .title {
  font-size: 1.6em;
  font-weight: bold;
  color: #1e1e1e;
  position: relative;
  text-shadow: 0px 3px 2px #b7b7b7;
}
.about-us .dscp-box-container {
  position: relative;
  margin: 0 15px;
}
.about-us .dscp-box-container .title {
  font-weight: bold;
  margin: 50px 0 15px;
  padding-left: 40px;
  color: #0e76bc;
  transition: 2s all;
  line-height: 1.2em;
}
.about-us .dscp-box-container .title:before {
  transition: 0.3s all;
  opacity: 0.7;
  content: "";
  display: inline-block;
  background: #9fc8e4;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  bottom: -47px;
  z-index: 1;
}
.about-us .dscp-box-container .title.animate {
  left: 0px;
  opacity: 1;
}
.about-us .dscp-box-container:hover .title:before {
  width: 55px;
  height: 55px;
  opacity: 1;
}
.about-us .dscp-box-container.animated-box .title {
  position: relative;
  left: -20px;
  opacity: 0;
}
.about-us .dscp-box-container.animated-box .title.animate {
  left: 0px;
  opacity: 1;
}
.about-us .dscp-box-container .dscp-box {
  font-size: 1.1em;
  background: #f5f6f8;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 10;
}
.about-us .dscp-box-container.box-2 .title:before {
  background: #d1e8b2;
}
.about-us .dscp-box-container.box-3 {
  margin: 0 25px;
}
.about-us .dscp-box-container.box-3 .dscp-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 10;
  border: 1px solid #a2a2a2;
}
.about-us .dscp-box-container.box-3 .dscp-box .date-and-score .circle {
  display: inline-block;
  background: #eadb36;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.about-us .dscp-box-container.box-3 .dscp-box .date-and-score .date {
  display: inline-block;
  font-size: 0.9em;
  vertical-align: top;
}
.about-us .dscp-box-container.box-3 .dscp-box .image-container {
  text-align: center;
}
.about-us .dscp-box-container.box-3 .dscp-box .image-container img {
  width: 150px;
  display: block;
  margin: 0 auto;
}
.about-us .dscp-box-container.box-3 .dscp-box .image-container .name {
  display: inline-block;
  font-weight: bold;
  position: relative;
}
.about-us .dscp-box-container.box-3 .dscp-box .image-container .name:before {
  content: "";
  height: 1px;
  background: gray;
  position: absolute;
  bottom: 6px;
  width: 100%;
  transition: 0.3s all;
}
.about-us .dscp-box-container.box-3 .dscp-box .comment {
  font-style: italic;
}
.about-us .comment-container .title {
  font-weight: bold;
  margin: 50px 0 15px;
  padding-left: 65px;
  color: #0e76bc;
  transition: 2s all;
  line-height: 1.2em;
  position: relative;
}
.about-us .comment-container .title.animate {
  left: 0px;
  opacity: 1;
}
.about-us .comment-container .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
}
.about-us .comment-container .owl-nav .owl-prev {
  position: absolute;
  left: 0;
  color: #0e76bc;
  font-size: 2.2em;
}
.about-us .comment-container .owl-nav .owl-next {
  position: absolute;
  right: 0;
  color: #0e76bc;
  font-size: 2.2em;
}

@keyframes nudge {
  50% {
    left: 95%;
  }
  100% {
    left: 10px;
  }
}
.blog-container .main-title {
  color: #0e76bc;
  position: relative;
  margin-bottom: 45px;
}
.blog-container .main-title:before {
  content: "";
  background-image: url("../../Images/Icons/blog-icon.png");
  display: inline-block;
  width: 40px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -8px;
}
.blog-container .main-title h2 {
  font-weight: bold;
  padding: 0;
  margin: 0;
  margin-left: 50px;
  top: -5px;
  position: relative;
}
.blog-container .main-title h2:after {
  content: "";
  width: 92%;
  height: 2px;
  background: #9fc8e4;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
}
.blog-container .item {
  background: #d1e8b2;
  padding: 20px;
  margin: 10px 0 35px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: inset 0 0px 5px darkgrey;
  align-items: center;
}
.blog-container .item.animate {
  animation-name: bounceInLeft;
  animation-duration: 2s;
}
.blog-container .item:nth-child(odd) {
  background: #9fc8e4;
}
.blog-container .item .img-container {
  flex: 0 0 20%;
}
.blog-container .item .img-container img {
  border-radius: 10px;
  box-shadow: 0 0px 5px darkgrey;
}
.blog-container .item .content-container {
  flex: 1;
  padding: 5px 10px 5px 20px;
}
.blog-container .item .content-container .title {
  color: black;
  font-size: 1.2em;
  display: inline-block;
}
.blog-container .item .content-container .title:hover {
  color: black;
}
.blog-container .item .content-container .title h2 {
  margin: 0;
  padding: 0; /*&:after { content: ""; width: 100%; height: 1px; background: gray; display: block; position: relative; bottom: -1px; }*/
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.video-container .main-title {
  color: #0e76bc;
  position: relative;
  margin-bottom: 20px;
}
.video-container .main-title:before {
  content: "";
  background-image: url("../../Images/Icons/light-icon.png");
  display: inline-block;
  width: 40px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -8px;
}
.video-container .main-title h2 {
  font-weight: bold;
  padding: 0;
  margin: 0;
  margin-left: 50px;
  top: -5px;
  position: relative;
}
.video-container .video-w {
  position: relative;
  border-radius: 10px;
}
.video-container .video-w video {
  border-radius: 10px;
}
.video-container .video-w .content {
  position: absolute;
  left: 15px;
  bottom: 15px;
  color: white;
}
.video-container .video-w .play-button {
  background: url(../../Images/Icons/play-icon.png);
  z-index: 2;
  position: absolute;
  width: 82px;
  height: 82px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background-size: cover;
}
.video-container .video-w.playing .play-button, .video-container .video-w.playing .content {
  display: none;
}

.location-container {
  margin-top: 50px;
}
.location-container .main-title {
  color: #0e76bc;
  position: relative;
  margin-bottom: 20px;
}
.location-container .main-title:before {
  content: "";
  background-image: url("../../Images/Icons/location-icon.png");
  display: inline-block;
  width: 40px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -8px;
}
.location-container .main-title h2 {
  font-weight: bold;
  padding: 0;
  margin: 0;
  margin-left: 50px;
  top: -5px;
  position: relative;
}
.location-container .location {
  overflow: hidden;
  position: relative;
}
.location-container .location h3 {
  margin: 10px 0;
}
.location-container .location iframe {
  border-radius: 10px;
  box-shadow: inset 0 0px 5px darkgrey;
}
.location-container .location .location-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
}

.paralex {
  height: 600px;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  background-position: bottom;
  transition: 10s all;
}
.paralex .paralex-bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.paralex .paralex-text {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: none;
  line-height: 2em;
}
.paralex .paralex-text h1 {
  text-transform: capitalize;
  font-size: 5em;
  display: inline-block;
  font-weight: bold;
  color: white;
  overflow: hidden;
  border-right: 0.15em solid white;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.1em;
  animation: typing 0.8s steps(200, end), blink-caret 1s step-end infinite;
  text-shadow: 0 2px 9px black;
}
.paralex.animate {
  background-position: top;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}
@media (max-width: 992px) {
  .paralex {
    height: 400px;
    background-position: center;
  }
  .paralex .paralex-text h1 {
    font-size: 3em;
  }
  .about-us .poem-container {
    width: 85vw;
  }
}
@media (max-width: 550px) {
  .paralex .paralex-text h1 {
    font-size: 2em;
  }
}
/*****Shared**********/
.page-footer {
  margin-top: 50px;
  background: #8dc63f;
  color: black;
}
.page-footer .bottom-menus a {
  color: black;
  position: relative;
}
.page-footer .bottom-menus a:before {
  content: "";
  height: 1px;
  background: gray;
  position: absolute;
  bottom: 3px;
  width: 100%;
  transition: 0.3s all;
}
.page-footer .bottom-menus a:hover::before {
  width: 0;
}
.page-footer .open-hours, .page-footer .address {
  margin-bottom: 50px;
}
.page-footer .logo img {
  width: 130px;
  margin-top: 60px;
}
.page-footer p {
  line-height: 1.4;
}
.page-footer .botttom-footer .copyright p {
  display: inline-block;
  position: relative;
  font-weight: 500;
}
.page-footer .botttom-footer .copyright p:before {
  content: "";
  height: 2px;
  background: black;
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
}

@media (max-width: 992px) {
  .page-footer {
    text-align: center;
    padding: 30px 0 0;
  }
  .page-footer .logo img {
    margin: 30px 0;
  }
}
/*****Shared**********/
.menu-circle {
  display: none;
}

.header-container {
  height: 75vh;
  background-size: 100% 100%;
  overflow: hidden;
  position: relative;
}
.header-container .right-circle {
  height: 80vw;
  width: 80vw;
  display: block;
  border-radius: 50%;
  position: absolute;
  right: -35vw;
  top: -20vw;
  background-image: url(/UserFiles/dr-shiravi.jpg);
  background-color: #d5dadd;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 61%;
  background-position: bottom left;
}
.header-container .about-dr {
  text-align: center;
  position: absolute;
  font-size: 1.3em;
  padding: 10px;
  color: black;
  margin: 0 auto;
  border-radius: 15px 15px 0 0;
  z-index: 10;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: white;
}
.header-container .about-dr img {
  width: 150px;
  background: #8db2bc;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: inset 0 0 5px grey;
  display: none;
}
.header-container .about-dr b, .header-container .about-dr strong {
  font-size: 1.3em;
}
.header-container .about-dr p {
  line-height: 1.4;
}
.header-container .left-circle {
  z-index: 1;
  height: 80vw;
  width: 80vw;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: -35vw;
  top: -20vw;
  background-image: url(/UserFiles/osteopathy.jpg);
  background-color: #d5dadd;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
}
.header-container .left-circle .other-img {
  position: relative;
  left: 43%;
  bottom: -34%;
  top: auto;
  z-index: 2;
  width: 62%;
}
.header-container .logo {
  position: absolute;
  left: 50%;
  bottom: 200px;
  transform: translateX(-50%);
  z-index: 3;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
  width: 250px;
}
.header-container .logo img {
  width: 100%;
}
.header-container .top-header {
  position: relative;
  z-index: 1;
}
.header-container .top-header .lang-section a {
  color: black;
  position: relative;
}
.header-container .top-header .lang-section a.active {
  font-weight: bold;
}
.header-container .top-header .lang-section a.active:before {
  content: "";
  height: 1px;
  background: black;
  position: absolute;
  bottom: 3px;
  width: 100%;
}
.header-container .top-header .lang-section a.active:after {
  content: "";
  border-left: solid 5px transparent;
  border-right: solid 5px transparent;
  border-top: solid 7px #000;
  width: 0;
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
}
.header-container .top-header .address {
  border-left: 8px solid #0e76bc;
  padding-left: 5px;
  margin-top: 5px;
}
.header-container .top-header .address p {
  line-height: 1.5;
  margin-bottom: 5px;
}
.header-container .top-header .social-media {
  font-size: 1.4em;
}
.header-container .top-header .social-media a {
  margin: 0 10px;
}
.header-container .top-header .open-hours {
  border-left: 8px solid #0e76bc;
  padding-left: 5px;
}
.header-container .top-header .open-hours p {
  line-height: 1.2;
}
.header-container .top-header .call-numbers {
  border-left: 8px solid #8dc63f;
  padding-left: 5px;
}
.header-container .top-header .call-numbers p {
  line-height: 1.2;
}
.header-container .middle-header .menu-container {
  min-width: 60%;
  z-index: 10;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  padding: 42px 0;
  border-top: 1px solid #eeeeee;
  margin-top: -40px;
  margin-left: -30px;
  margin-right: -30px;
  padding-right: 30px;
}
.header-container .middle-header .menu-container ul li {
  padding: 0;
  margin: 0;
  display: inline-block;
  margin-right: 5%;
  position: relative;
}
.header-container .middle-header .menu-container ul li:last-child {
  margin-right: 0;
}
.header-container .middle-header .menu-container ul li a {
  color: black;
  font-weight: bold;
}
.header-container .middle-header .menu-container ul li.active:before {
  content: "";
  height: 2px;
  background: #0e76bc;
  position: absolute;
  bottom: 3px;
  width: 100%;
  transition: 0.3s all;
}
.header-container .middle-header .slogan {
  text-align: left;
  position: relative;
  z-index: 1;
}
.header-container .middle-header .slogan h1 {
  font-size: 1.2em;
  margin: 0;
}
.header-container .middle-header .slogan p {
  line-height: 1.4;
}
.header-container .middle-header .slogan b, .header-container .middle-header .slogan strong {
  font-size: 1.8em;
}
.header-container.inner-page-header {
  height: 200px;
  margin-bottom: 50px;
}
.header-container.inner-page-header .right-circle {
  background: #eee;
}
.header-container.inner-page-header .about-dr {
  display: none;
}
.header-container.inner-page-header .left-circle {
  background-image: none;
}
.header-container.inner-page-header .bottom-header {
  display: none;
}
.header-container.inner-page-header .logo {
  width: 120px;
  right: 20px;
  left: auto;
  transform: none;
  bottom: 10px;
}
.header-container.inner-page-header .slogan {
  padding: 10px 0;
}
.header-container.inner-page-header .menu-container {
  padding: 20px 30px;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.7);
}

.default-page .middle-header .menu-container {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 30px;
  margin-top: 0;
}
.default-page .middle-header .slogan {
  padding: 10px 0;
}

/*Menu Btn Animation*/
@keyframes topBar_open {
  0% {
    transform: translateY(0px) rotate(0deg);
    width: 40px;
  }
  10% {
    transform: translateY(-4px) rotate(0deg);
    width: 45px;
  }
  50% {
    transform: translateY(-2px) rotate(45deg);
    width: 50px;
  }
  75% {
    transform: translateY(0px) rotate(45deg);
    width: 55px;
  }
  100% {
    transform: translateY(0px) rotate(45deg);
    width: 55px;
  }
}
@keyframes bottomBar_open {
  0% {
    transform: translateY(0px) rotate(0deg);
    width: 40px;
  }
  10% {
    transform: translateY(-6px) rotate(0deg);
    width: 45px;
  }
  60% {
    transform: translateY(-12px) rotate(-45deg);
    width: 50px;
  }
  75% {
    transform: translateY(-16px) rotate(-45deg);
    width: 55px;
  }
  100% {
    transform: translateY(-16px) rotate(-45deg);
    width: 55px;
  }
}
@keyframes menuLabel_open {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  25% {
    transform: translateY(-18px);
  }
  45% {
    transform: translateY(44px);
    opacity: 1;
  }
  48% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(30px);
    opacity: 0;
  }
}
@keyframes topBar_close {
  0% {
    transform: translateY(17px) rotate(45deg);
    width: 44px;
  }
  35% {
    transform: translateY(-8px) rotate(-4deg);
    width: 40px;
  }
  53% {
    transform: translateY(10px) rotate(3deg);
    width: 40px;
  }
  70% {
    transform: translateY(-6px) rotate(0deg);
    width: 40px;
  }
  100% {
    transform: translateY(-2px) rotate(0deg);
    width: 40px;
  }
}
@keyframes bottomBar_close {
  0% {
    transform: translateY(-8px) rotate(-45deg);
    width: 44px;
  }
  35% {
    transform: translateY(-18px) rotate(6deg);
    width: 40px;
  }
  53% {
    transform: translateY(0px) rotate(-3deg);
    width: 40px;
  }
  48% {
    transform: translateY(-7px) rotate(0deg);
    width: 40px;
  }
  100% {
    transform: translateY(0px) rotate(0deg);
    width: 40px;
  }
}
@keyframes menuLabel_close {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  5% {
    transform: translateY(25px);
    opacity: 1;
  }
  25% {
    transform: translateY(-30px);
    opacity: 1;
  }
  37% {
    transform: translateY(-22px);
    opacity: 1;
  }
  45% {
    transform: translateY(-22px);
    opacity: 1;
  }
  58% {
    transform: translateY(8px) rotate(-10deg);
    opacity: 1;
  }
  83% {
    transform: translateY(-6px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#menu-btn {
  display: none;
  position: relative;
  text-align: center;
  width: 40px;
  height: 65px;
  margin: 0;
  z-index: 21;
  float: none;
  opacity: 1 !important;
  text-shadow: 0 1px 0 #000;
}
#menu-btn:before, #menu-btn:after {
  content: "";
  width: 100%;
  height: 5px;
  background-color: black;
  display: block;
  position: absolute;
  border-radius: 20px;
}
#menu-btn:before {
  transform-origin: left center;
}
#menu-btn:after {
  right: 0;
  top: 15px;
  transform-origin: right center;
}
#menu-btn .text {
  color: black;
  display: block;
  position: absolute;
  bottom: 15px;
  font-size: 1em;
}
#menu-btn:hover {
  cursor: pointer;
}
#menu-btn.open-menu:before {
  animation: topBar_open 1s ease-in-out;
  animation-fill-mode: forwards;
}
#menu-btn.open-menu:after {
  animation: bottomBar_open 1s ease-in-out;
  animation-fill-mode: forwards;
}
#menu-btn.open-menu .text {
  animation: menuLabel_open 1s ease-in;
  animation-fill-mode: forwards;
}
#menu-btn.close-menu:before {
  animation: topBar_close 1s ease-in-out;
  animation-fill-mode: forwards;
}
#menu-btn.close-menu:after {
  animation: bottomBar_close 1s ease-in-out;
  animation-fill-mode: forwards;
}
#menu-btn.close-menu .text {
  animation: menuLabel_close 1s ease-in;
  animation-fill-mode: forwards;
}

.credits {
  display: block;
  color: white;
  width: 100%;
  font-family: "Candal", sans-serif;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.6;
}

/*End Menu Animation*/
@media (min-width: 1600px) {
  .header-container .right-circle .about-dr {
    top: calc(80vw - 54%);
  }
}
@media (max-width: 1200px) {
  .header-container .middle-header .menu-container ul li {
    margin-right: 20px;
  }
}
@media (max-width: 992px) {
  .header-container {
    height: auto;
  }
  .header-container.inner-page-header {
    height: 130px;
  }
  .header-container .top-header {
    padding-top: 10px;
    position: absolute;
    top: 0;
  }
  .header-container .top-header .open-hours, .header-container .top-header .call-numbers, .header-container .top-header .address {
    display: none;
  }
  .header-container .top-header .social-media {
    float: left;
  }
  .header-container .top-header .lang-section {
    float: right;
  }
  .header-container .middle-header {
    margin-top: 0;
    position: absolute;
    left: 10px;
    top: 40px;
    background: none;
  }
  .header-container .middle-header .menu-container {
    padding: 25px 0px;
    background: none;
    border: none;
    margin: 0;
  }
  .header-container .middle-header .slogan {
    display: none;
  }
  .header-container .logo {
    display: block;
    width: 90px !important;
    height: 90px;
    border-radius: 50%;
    top: 10px;
    bottom: auto;
    left: auto;
    right: 10px;
    transform: none;
    background: white;
  }
  .header-container .left-circle {
    display: none;
  }
  .header-container .right-circle {
    display: block;
    width: 100%;
    border-radius: 0;
    background-size: 100%;
    background-position: top center;
    position: relative;
    right: 0;
    left: 0;
    top: 0;
    height: 70vh;
  }
  .header-container .about-dr {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    margin: auto;
    color: black;
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 0;
    bottom: 0;
    transform: none !important;
  }
  .header-container .bottom-header {
    display: none;
  }
  .about-us .main-title .line-right {
    margin: 0;
  }
  .about-us .main-title .line-left {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .header-container .middle-header .menu-container .menu-wrapper {
    overflow: hidden;
    left: 100%;
    transition: 0.3s all;
    right: 0;
    bottom: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    background: transparent;
    z-index: 20;
  }
  .header-container .middle-header .menu-container .menu-wrapper ul li {
    margin-right: 0;
  }
  .header-container .middle-header .menu-container .menu-wrapper ul li.active:before {
    display: none;
  }
  .header-container .middle-header .menu-container .menu-wrapper .menu-circle {
    display: block;
    background: linear-gradient(100deg, #dedfe0 10%, #cececf 90%);
    position: absolute;
    left: 21%;
    right: -39%;
    bottom: -40%;
    top: -7%;
    border-radius: 50%;
    box-shadow: inset 0 0 2px grey;
  }
  .header-container .middle-header .menu-container .menu-wrapper.open-menu-wrapper {
    left: 0;
    background: white;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu {
    font-size: 1.3em;
    height: 100%;
    overflow-y: auto;
    right: 0;
    position: relative;
    float: none;
    width: 270px;
    margin-left: auto;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul {
    min-width: auto !important;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 {
    width: 100%;
    display: block;
    height: 100%;
    text-align: right;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li {
    width: 100%;
    float: none;
    position: relative;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li .caret {
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    width: 60px;
    height: 100%;
    margin: 0;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li .caret:after {
    content: "+";
    display: block;
    color: #0e76bc;
    font-size: 30px;
    font-weight: bold;
    height: 100%;
    width: 30px;
    position: absolute;
    top: 0px;
    left: 5px;
    line-height: 1.4em;
    padding: 5px;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li.level-1 {
    padding: 0;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li.level-1 > a {
    padding: 5px 10px;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li.level-1 > a:after {
    display: none;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li.level-1.active ul.level-2 {
    display: block;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li.level-1.active > a > .caret:after {
    content: "-";
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li a {
    color: black !important;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li a:hover, .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li a:focus { /* background-color: #444 !important;*/ }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 {
    padding: 0;
    background-image: none !important;
    position: relative;
    min-height: auto;
    column-count: 1;
    background: transparent;
    box-shadow: none;
    border: none;
    display: none;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 li.level-2 {
    background: #6d6d6d;
    border-bottom: 2px solid #616161;
    padding: 0;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 li.level-2 > a {
    padding: 5px 20px 5px 10px;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 li.level-2 > a > .caret {
    display: block;
    left: 0px;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 li.level-2 > a > .caret:after {
    top: 0;
    font-size: 20px;
    left: 5px;
    line-height: 1.7em;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 li.level-2.active ul.level-3 {
    display: block;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 li.level-2.active > a > .caret:after {
    content: "-";
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 ul.level-3 {
    display: none;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 ul.level-3 li.level-3 {
    background: #4b4b4b;
    padding: 0;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 ul.level-3 li.level-3 > a {
    padding: 5px 30px 5px 10px;
  }
  .header-container .middle-header .menu-container .menu-wrapper nav.menu ul.level-1 li ul.level-2 ul.level-3 li.level-3.active > a > .caret:after {
    content: "-";
  }
  .header-container .middle-header .menu-container #menu-btn {
    display: block;
  }
}
/*****Shared**********/
/********Blog**********/
.blog .blog-post-list .title {
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: bold;
}
.blog .blog-post-list .summary {
  line-height: 1.6;
}
.blog .blog-post-list .blog {
  background: #ffffff;
  border-radius: 5px;
  padding: 10px;
  position: relative;
  z-index: 10;
  border: 1px solid #e8e8e8;
  margin-bottom: 40px;
}
.blog.detail .dscp img {
  width: 700px;
  margin-left: 30px;
  border-radius: 5px;
  box-shadow: -4px 6px 11px 0px grey;
  transition: 0.3s all;
  transform: translate(110%) !important;
  opacity: 0;
}
.blog.detail .dscp img.animate {
  transform: translate(0) !important;
  opacity: 1;
}

@media (max-width: 768px) {
  .blog.detail .dscp img {
    margin: 0 auto 20px;
  }
}
body {
  font-size: 14px;
}

img {
  width: 100%;
  max-width: 100%;
}

.top-margin-50 {
  margin-top: 50px;
}

.container-fluid {
  padding: 0 30px;
}

.no-scroll {
  overflow: hidden;
}

.link-animate {
  color: black;
  position: relative;
}
.link-animate:before {
  content: "";
  height: 1px;
  background: gray;
  position: absolute;
  bottom: 3px;
  width: 100%;
  transition: 0.3s all;
}
.link-animate:hover::before {
  width: 0;
}

@media (max-width: 768px) {
  .modal {
    padding: 0 !important;
  }
  .modal .modal-dialog {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .modal .modal-content {
    height: auto !important;
    min-height: 100% !important;
    border: 0 none !important;
    border-radius: 0 !important;
  }
  body * .modal .modal-dialog {
    left: 2px;
  }
}
.d-inline-block {
  display: inline-block;
}

.dblock {
  display: block;
}

.b {
  font-weight: bold;
}

.sticky {
  position: sticky;
  top: 10px;
}

.calendar-container .topic-item {
  background: #00c1ca;
  margin: 5px 0;
  padding: 10px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  transition: 0.3s all;
  /*&:hover { background: #009097; }*/
}
.calendar-container .topic-item.active {
  background: #009097;
}
.calendar-container .topic-item p:last-child {
  margin: 0;
}
.calendar-container .timezone-hint {
  font-size: 1.8em;
  color: #6F6F6D;
}
.calendar-container .change-week {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #979797;
}
.calendar-container .change-week .column {
  flex: 1;
  padding: 10px;
}
.calendar-container .change-week .column.text-left span {
  transition: 0.2s all;
  cursor: pointer;
  height: 30px;
  background: #BFBFBF;
  width: 30px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
}
.calendar-container .change-week .column.text-left span:hover {
  background: #00c1ca;
}
.calendar-container .change-week .column.text-left span:before {
  content: "";
  background: url("/Images/svg-icon/Back-white-icon.svg");
  background-repeat: no-repeat;
  background-size: 19px 17px;
  width: 70%;
  height: 60%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.calendar-container .change-week .column.text-center {
  font-size: 1.7em;
  font-weight: 500;
}
.calendar-container .change-week .column.text-right span {
  transition: 0.2s all;
  cursor: pointer;
  height: 30px;
  background: #BFBFBF;
  width: 30px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
}
.calendar-container .change-week .column.text-right span:hover {
  background: #00c1ca;
}
.calendar-container .change-week .column.text-right span:before {
  content: "";
  background: url("/Images/svg-icon/Next-white-icon.svg");
  background-repeat: no-repeat;
  background-size: 19px 17px;
  width: 60%;
  height: 60%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.calendar-container .color-help {
  display: flex;
}
.calendar-container .color-help .color-item {
  flex: 2;
  font-size: 1.2em;
  text-align: center;
  color: black;
}
.calendar-container .color-help .color-item .color-box {
  height: 16px;
  width: 16px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
  border: 1px solid #e3e3e3;
  border-radius: 2px;
}
.calendar-container .color-help .color-item .color-box.available {
  background: #00c1ca;
}
.calendar-container .color-help .color-item .color-box.not-available {
  background: #eeeeee;
}
.calendar-container .color-help .color-item .color-box.selected {
  background: #0e76bc;
}
.calendar-container .color-help .color-item .color-box.reserved {
  background: #bef0ff;
}
.calendar-container .color-help .color-item .color-box.another-topic {
  background: #00c1ca;
}
.calendar-container .color-help .color-item .color-box.booked-color {
  background-color: transparent;
  background-image: repeating-linear-gradient(60deg, transparent, transparent 2px, #e3e3e3 0, #e3e3e3 5px);
}
.calendar-container .color-help .color-item p {
  display: inline-block;
}
.calendar-container .color-help .color-item.time-zone {
  flex: 5;
  text-align: right;
}
.calendar-container .days {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 0px;
  z-index: 7;
  background: WHITE;
}
.calendar-container .days .column {
  flex: 1;
  padding: 10px;
  font-weight: bold;
  color: #505050;
}
.calendar-container .calender {
  display: flex;
  justify-content: center;
  text-align: center;
}
.calendar-container .calender .date {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 1px;
}
.calendar-container .calender .date .column {
  position: relative;
  height: 40px;
  background: #eeeeee;
  padding: 4px;
  cursor: pointer;
}
.calendar-container .calender .date .column .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #333333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 11;
  top: 90%;
  left: 0;
  right: 0;
  width: 80%;
  margin: 0 auto;
}
.calendar-container .calender .date .column:hover .tooltiptext {
  visibility: visible;
}
.calendar-container .calender .date .column.available {
  background-color: #00c1ca;
  border-radius: 5px;
  color: white;
  border-bottom: 1px solid #eeeeee;
  font-weight: bold; /*&:hover { background-color: #009097; }*/
}
.calendar-container .calender .date .column.item-hover {
  background: #009097;
}
.calendar-container .calender .date .column.not-active-section {
  background-color: #bef0ff;
}
.calendar-container .calender .date .column.reserved {
  background-color: #bef0ff;
}
.calendar-container .calender .date .column.s-booked {
  background-color: transparent;
  background-image: repeating-linear-gradient(60deg, transparent, transparent 5px, #e3e3e3 0, #e3e3e3 15px);
}
.calendar-container .calender .date .column.passed-time {
  pointer-events: none;
  background: #eeeeee;
}
.calendar-container .calender .date .column.another-topic {
  background-color: #00c1ca;
  color: white;
}
.calendar-container .calender .date .column.selected-item {
  background-color: #0e76bc !important;
  color: white;
}
.calendar-container .calender .date .column:last-child {
  border-bottom: 1px solid #979797;
}
.calendar-container .calender .datetime {
  flex: 1;
}
.calendar-container .calender .datetime .column {
  background: white;
  padding: 4px;
  color: black;
  height: 40px;
  color: #505050;
  font-weight: bold;
  text-align: right;
  padding-right: 20px;
}
.calendar-container .calender .datetime .column:first-child {
  border-top: 1px solid #979797;
}
.calendar-container .calender .datetime .column:last-child {
  border-bottom: 1px solid #979797;
}
.calendar-container .btn-container {
  text-align: center;
  position: sticky;
  bottom: 0;
  background: white;
  padding: 5px;
  border-top: 1px solid #979797;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calendar-container .btn-container .col {
  flex: 1;
  text-align: right;
}
.calendar-container .btn-container .col .btn {
  margin-right: 10px;
}
.calendar-container .btn-container .hint {
  font-size: 1.2em;
}

#reservedModal .title {
  margin: 0 0 15px;
  font-weight: bold;
}
#reservedModal .selected-item-container {
  border: 1px solid #b3b3b3;
  background: whitesmoke;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
}
#reservedModal .selected-item-container .selected-items {
  padding: 0 15px;
}
#reservedModal .selected-item-container .selected-items .selected-item {
  flex: 0 0 48%;
}
#reservedModal .alert {
  margin-bottom: 2px;
  padding: 0 5px;
}

.toast-container {
  position: fixed;
  right: 15px;
  top: 30px;
  z-index: 9999;
}
.toast-container .toast {
  z-index: 100;
  overflow: hidden;
  transition: 0.5s all;
  cursor: pointer;
  min-width: 350px;
  text-align: center;
  color: black;
  background-color: #effcf9 !important;
  font-size: 16px;
  opacity: 0.5;
  box-shadow: 0 2px 9px #cbcbcb;
  border-radius: 2px;
  margin-bottom: 10px;
}
.toast-container .toast .toast-header {
  height: 5px;
  width: 100%;
  background: #ddd;
  position: relative;
}
.toast-container .toast .toast-header .timing {
  position: absolute;
  left: 0;
  right: 0;
  background: #88e4cf;
  height: 5px;
  top: 0;
  width: 100%;
}
.toast-container .toast .toast-header .timing.toast-header-error {
  background: #e4888c;
}
.toast-container .toast.toast-erorr {
  background: #fcefef !important;
}
.toast-container .toast p {
  margin: 0;
  vertical-align: middle;
  padding: 5px 30px;
}
.toast-container .toast.show-toast {
  opacity: 1;
}

.loading-container {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.loading-container .loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
}

#account-modal-content .logout-form {
  display: inline-block;
}

/*Defaults*/
.inner-page h1, .inner-page h2, .inner-page h3, .inner-page h4, .inner-page h5, .inner-page h6 {
  color: #0e76bc;
  font-family: IranSansWeb;
  font-weight: 300;
}
.inner-page .banner {
  position: relative;
}
.inner-page .banner .banner-image {
  width: 100%;
}
.inner-page .banner .ribbon {
  position: absolute;
  width: 15%;
  right: 49.5%;
  top: 31%;
  min-width: 155px;
}
.inner-page .banner .brand-name {
  position: absolute;
  right: 51.5%;
  top: 7vw;
  color: white;
  transform: rotate(18deg) skewX(15.5deg);
  font-size: 1vw;
  -sand-transform: rotate(18deg) skewX(15.5deg);
}
@media (max-width: 1040px) {
  .inner-page .banner .brand-name {
    font-size: 0.7em;
    top: 7.4vw;
    margin-top: -10px\9 ;
  }
}
.inner-page .banner .diamond-btn {
  padding: 20px 0;
  position: absolute;
  left: 50%;
  bottom: -62px;
  margin-left: -47.5px;
  text-align: center;
  width: 95px;
  height: 95px;
  display: inline-block;
  vertical-align: middle;
  background: url("/images/icons.sprite.png") -10px -1500px no-repeat;
}
.inner-page .banner .diamond-btn img {
  max-width: 50px;
}

.highlight {
  outline: -2px solid rgba(0, 0, 255, 0.5);
  box-shadow: 0 0 9px 3px rgba(0, 0, 255, 0.5);
}

.magnifier {
  background-color: white;
}

.checkbox > input[type=checkbox], .checkbox-inline > input[type=checkbox], .radio > input[type=radio], .radio-inline > input[type=radio] {
  margin-right: 0;
  margin-top: 2px;
}

.checkbox input[type=checkbox] + label, .checkbox-inline input[type=checkbox] + label, .radio input[type=radio] + label, .radio-inline input[type=radio] + label {
  padding-right: 25px;
}

.btn img {
  max-width: 90%;
}

/*Account*/
/*****Shared**********/
/********Gallery**********/
.counter #count {
  border-bottom: 2px solid #2b6bb4;
  margin-bottom: 10px;
  display: inline-block;
}

/*Comment*/
.comments #comment-form-wrapper {
  border: 1px dashed #979797;
  border-radius: 8px;
  position: relative;
}
.comments #comment-form-wrapper:before {
  content: "";
  width: 50px;
  height: 1px;
  border-bottom: 1px dashed #979797;
  position: absolute;
  top: 17px;
  left: -7px;
  transform: rotate(45deg);
}
.comments #comment-form-wrapper:after {
  content: "";
  width: 50px;
  height: 1px;
  border-bottom: 1px dashed #979797;
  position: absolute;
  top: 17px;
  right: -7px;
  transform: rotate(-45deg);
}
.comments #comment-form-wrapper .title {
  font-size: 1.71em;
  margin-top: 15px;
  margin-bottom: 40px;
}
.comments #comment-form-wrapper label.control-label {
  color: #acacac;
}
.comments #comment-form-wrapper #comment-captcha-image {
  display: block;
  border-radius: 8px;
}

#comments .comment-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px dashed #979797;
  border-radius: 8px;
  position: relative;
  margin-top: 20px;
}
#comments .comment-list:before {
  content: "";
  width: 50px;
  height: 1px;
  border-bottom: 1px dashed #979797;
  position: absolute;
  bottom: 17px;
  right: -7px;
  transform: rotate(45deg);
}
#comments .comment-list:after {
  content: "";
  width: 50px;
  height: 1px;
  border-bottom: 1px dashed #979797;
  position: absolute;
  bottom: 17px;
  left: -7px;
  transform: rotate(-45deg);
}
#comments .comment-list .comment-body {
  width: 100%;
  clear: both;
  padding: 20px 0;
}
#comments .comment-list .comment-body .actions {
  float: left;
  width: 10%;
  border-right: 3px solid white;
  text-align: center;
}
#comments .comment-list .comment-body .actions .points > div {
  font-size: 1.4em;
  cursor: pointer;
  line-height: 1em;
}
#comments .comment-list .comment-body .actions .points .vote-up {
  color: green;
}
#comments .comment-list .comment-body .actions .points .vote-down {
  color: red;
}
#comments .comment-list .comment-body .actions .points .vote-count {
  color: #61605e;
  font-size: 24px;
  padding: 9px;
  line-height: 0;
  direction: rtl;
}
#comments .comment-list .comment-body .actions .likes {
  display: inline-block;
}
#comments .comment-list .comment-body .actions .likes .action-btn {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
#comments .comment-list .comment-body .actions .likes .action-btn .icon {
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  display: inline-block;
  float: right;
}
#comments .comment-list .comment-body .actions .likes .action-btn .icon.like {
  background-image: url("/Images/Like.png");
  display: block;
}
#comments .comment-list .comment-body .actions .likes .action-btn .icon.liked {
  background-image: url("/Images/Like-hover.png");
  display: none;
}
#comments .comment-list .comment-body .actions .likes .action-btn.liked .icon.like {
  display: none;
}
#comments .comment-list .comment-body .actions .likes .action-btn.liked .icon.liked {
  display: block;
}
#comments .comment-list .comment-body .actions .likes .count {
  margin-top: -15px;
}
#comments .comment-content {
  width: 88%;
  padding: 5px 10px;
  display: inline-block;
  padding: 10px 30px;
  color: #646267;
}
#comments .comment-content .comment-writer {
  font-size: 0.9em;
}
#comments .comment-content .comment-writer .purchased-this {
  margin-left: 10px;
  color: #31ab46;
}
#comments .comment-content .alert.recommend {
  font-size: 0.8em;
  display: inline-block;
  margin-bottom: 5px;
}
#comments .comment-content .comment-text {
  font-size: 0.8em;
}
#comments .comment-content .sub-comment-container {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
#comments .comment-content .sub-comment-container .sub-comment {
  border-bottom: 1px solid #b2aba3;
  padding: 5px 10px;
}
#comments .comment-content .sub-comment-container .sub-comment .comment-text {
  font-size: 0.7em;
}
#comments .comment-content .sub-comment-container .sub-comment .comment-writer {
  font-size: 0.7em;
}
#comments .comment-content .sub-comment-container .sub-comment .comment-writer .date {
  color: #b8b4bb;
}
#comments .comment-content .sub-comment-container .sub-comment:first-child {
  border-top: 1px solid #b2aba3;
}
#comments .comment-content .flat-btn {
  padding: 5px 10px;
  font-size: 0.8em;
  margin-top: 10px;
  display: inline-block;
}

@media (max-width: 480px) {
  .comments #comment-form-wrapper {
    padding: 15px;
  }
  #comments .comment-list {
    padding: 15px;
  }
}
.comments-wrapper .header {
  font-size: larger;
  margin-bottom: 15px;
}

.comments-wrapper ul.comments {
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
}

.comments-wrapper li.comment {
  padding: 15px;
  border-bottom: 1px dotted silver;
}

.comments-wrapper li.comment .date {
  font-size: 0.9em;
}

.comments-wrapper li.comment.alternate-item {
  background-color: whitesmoke;
}

.comments-wrapper .comment-content {
  padding: 10px 0 0 15px;
}

.comments-wrapper .send {
  margin-top: 10px;
}

.comments-wrapper .submit-comment-form {
  margin-top: 25px;
}

/*Menu*/
.menuRootUl .separator { /*height: 100%; left: 0; top: 0; position: absolute; width: 1px; background-color: red;*/
  display: none;
}

.menuRootUl ul.level1 {
  box-shadow: 1px 1px 5px gray;
}

.menuRootUl .level1.lastChild > a .separator {
  display: none;
}

.menuRootUl .statusicon {
  background-image: url(/images/MenuImages/plus-left.gif);
  background-repeat: no-repeat;
  background-position: center center;
}

.menuRootUl .level1 > a .statusicon {
  width: 6px;
  height: 3px;
  background-image: url(/images/MenuImages/plus-Down.gif);
  background-repeat: no-repeat;
  background-position: center center;
}

.menuRootUl li.selected {
  background: #cccccc;
}

/*AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA*/
/*****Shared**********/
/********Accordion Menu**********/
.accordion {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  list-style: none;
  border: 1px solid #f4f4f4;
  width: 100%;
  margin-bottom: 15px;
}
.accordion.level-1 {
  border-radius: 8px;
  box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.accordion ul, .accordion li, .accordion a, .accordion span {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}
.accordion li {
  list-style: none;
  position: relative;
}
.accordion li .icon-bg {
  height: 6px;
  width: 50px;
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 0;
  background-color: #e1e1e1;
}
.accordion li .icon {
  width: 26px;
  height: 21px;
  background-repeat: no-repeat;
  background-color: white;
  background-position: center;
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 2;
}
.accordion li .trigger {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 15px;
  top: 21px;
  background: url(/images/arrow.svg) no-repeat center center;
  background-size: contain;
}
.accordion li.open > a .trigger {
  background-image: url(/images/arrow-up.svg);
}
.accordion li a.link {
  padding: 15px 0 12px 55px;
  display: inline-block;
}
.accordion li.level-1 {
  background: white;
}
.accordion li.level-1 a.link {
  font-weight: bold;
  color: #8dc63f;
  width: 100%;
}
.accordion li.level-1.selected > a.link {
  color: #0e76bc;
}
.accordion li.level-1.selected .icon-bg {
  background-color: #0e76bc;
}
.accordion li.level-1 > ul {
  display: none;
}
.accordion li.level-2 {
  background: #f4f4f4;
  border: 1px solid #e6e6e6;
}
.accordion li.level-2 > a.link {
  color: #8dc63f;
}

/*ActionButtons*/
.action-buttons {
  float: right;
  margin-right: 10px;
}

.action-buttons .share-button {
  display: inline-block;
  position: relative;
}

.action-buttons .share-button li {
  direction: rtl;
  text-align: right;
}

.action-buttons .share-button i {
  margin-left: 5px;
}

.action-buttons .share-button .fa-facebook-square {
  color: #3b5998;
}

.action-buttons .share-button .fa-google-plus-square {
  color: #e02f2f;
}

.action-buttons .share-button .fa-twitter-square {
  color: #2aa1d3;
}

.action-buttons .share-button .fa-linkedin-square {
  color: #007bb5;
}

.action-buttons .share-button .fa-pinterest-square {
  color: #ca2127;
}

/*Article*/
/*****Shared**********/
/********Gallery**********/
.article.list .items {
  margin-top: 24px;
}
.article.list .items .item {
  color: #8dc63f;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  display: block;
  overflow: hidden;
  text-align: center;
  margin-bottom: 10px;
}
.article.list .items .item .date {
  font-size: 0.86em;
  font-family: IranSansWeb;
  font-weight: 500;
  width: 10%;
  border-right: 1px solid #ededed;
  margin: 20px 0;
  padding: 30px 0;
  vertical-align: middle;
  text-align: center;
  float: left;
}
.article.list .items .item .date span {
  display: block;
  margin-top: 14px;
}
.article.list .items .item .dscp {
  width: 90%;
  padding: 24px 12px 24px;
  text-align: left;
  float: right;
}

/*ArticleSubmit*/
.article-submit .form .column.label {
  width: 80px;
  text-align: right;
  vertical-align: top;
}

/*ArticleList*/
.article-list .media {
  position: relative;
  padding-top: 15px;
}

.article-list .media:first-child {
  border-top: none;
}

.article-list .summary {
  text-indent: 15px;
  padding: 0 5px 0 5px;
}

.article-list .footer {
  text-align: right;
}

/*ArticleArchive*/
.article-archive a.link:visited, .article-archive a.link:link, .article-archive a.link:active {
  font-weight: bold;
}

.article-archive a.link:hover {
  font-weight: bold;
}

.article-archive .item {
  padding: 5px;
  margin-bottom: 10px;
}

.article-archive .summary {
  padding: 5px;
}

/*BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB*/
/*****Blog*****/
/*****Shared**********/
/********Blog**********/
.blog .blog-post-list .title {
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: bold;
}
.blog .blog-post-list .summary {
  line-height: 1.6;
}
.blog .blog-post-list .blog {
  background: #ffffff;
  border-radius: 5px;
  padding: 10px;
  position: relative;
  z-index: 10;
  border: 1px solid #e8e8e8;
  margin-bottom: 40px;
}
.blog.detail .dscp img {
  width: 700px;
  margin-left: 30px;
  border-radius: 5px;
  box-shadow: -4px 6px 11px 0px grey;
  transition: 0.3s all;
  transform: translate(110%) !important;
  opacity: 0;
}
.blog.detail .dscp img.animate {
  transform: translate(0) !important;
  opacity: 1;
}

@media (max-width: 768px) {
  .blog.detail .dscp img {
    margin: 0 auto 20px;
  }
}
/*BlogPost*/
.blog-post .header a {
  margin: 0 5px;
}

.blog-post .header .date-wrapper {
  float: left;
  margin-right: 20px;
}

.blog-post .header .icons {
  float: right;
  margin-right: 10px;
}

.blog-post .blog-post-gallery {
  float: left;
  width: 100%;
  margin: 0 0 5px 15px;
}

.blog-post .image {
  float: left;
  margin: 0 15px 5px 0;
}

@media (max-width: 768px) {
  .blog-post .image {
    width: 100%;
  }
}
.blog-post .related-pictures {
  width: 100%;
  border-top: 1px dotted silver;
  padding-top: 10px;
  margin-top: 5px;
}

.blog-post .related-pictures img {
  float: left;
  margin-left: 10px;
}

.blog-post .footer {
  font-size: 10px;
  color: Gray;
  margin-top: 15px;
  vertical-align: middle;
}

.blog-post .footer .blog-post-tags {
  float: left;
}

.blog-post .footer .blog-post-info {
  float: right;
}

.blog-post .footer .blog-post-info .source-wrapper {
  float: right;
  margin-right: 10px;
}

.blog-post .footer .blog-post-info .view-count {
  float: right;
}

.blog-post-container {
  margin-bottom: 15px;
}

.blog-post .similar-posts .item {
  margin: 10px 0 0 10px;
}

/*BlogPostList*/
/*.blog-post-list { }
.blog-post-list .media { position: relative; border-top: 1px dotted silver; padding-top: 15px; }
.blog-post-list .media .author { float: right; margin-right: 20px; margin-top: 8px; }
.blog-post-list .media:first-child { border-top: none; }
.blog-post-list .summary { text-indent: 15px; padding: 0 5px 0 5px; }
.blog-post-list .footer { text-align: right; }*/
@media (max-width: 768px) {
  .blog-post-list .media .media-object, .blog-post-list .media a {
    width: 100%;
  }
}
/*CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC*/
/*Cart*/
/*****Shared**********/
body.cart .empty-cart {
  text-align: center;
}
body.cart .title-wrapper h1 {
  font-size: 2.3em;
  margin-top: 28px;
  margin-bottom: 6px;
}
body.cart .inner-page-header .links-wrapper {
  float: right;
  margin-bottom: 15px;
}
body.cart .footer {
  position: relative;
  margin-top: 25px;
}
body.cart .footer .back-button {
  position: absolute;
  top: 0;
  right: 0;
}
body.cart .footer .button-wrapper .btn {
  min-width: 220px;
}
body.cart .footer .step-indicator {
  padding: 5px 0;
}
body.cart .footer .step-indicator .indicator {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #b3b3b3;
  display: inline-block;
  margin: 1px;
}
body.cart .footer .step-indicator .indicator.active {
  background: #0e76bc;
}
body.cart .cart .actions {
  clear: both;
  float: right;
  margin-bottom: 8px;
  padding-top: 8px;
  border-top: 2px solid #dcdcdc;
}
body.cart .cart .actions .invoice {
  display: inline-block;
  margin-right: 8px;
  padding-right: 14px;
  border-right: 1px solid #ededed;
  padding-left: 35px;
  position: relative;
}
body.cart .cart .actions .invoice a {
  color: #444444;
}
body.cart .cart .actions .invoice a:hover {
  color: black;
}
body.cart .cart .actions .invoice:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: -5px;
  top: 3px;
}
body.cart .cart .actions .invoice.fax:after {
  background: url("/Images/fax-print.svg") no-repeat;
}
body.cart .cart .actions .invoice.print:after {
  background: url("/Images/print.svg") no-repeat;
}
body.cart .cart .actions .invoice.download {
  padding-right: 0;
  border-right: none;
}
body.cart .cart .actions .invoice.download:after {
  background: url("/Images/download.svg") no-repeat;
}
body.cart .cart .items-group {
  clear: both;
  border-bottom: 1px solid #979797;
}
body.cart .cart .items-group .headers {
  height: 60px;
  background-color: #ededed;
  border-top: 1px solid #979797;
  border-right: 1px solid #979797;
  font-size: 0.857em;
  font-weight: bold;
}
body.cart .cart .items-group .headers .cell {
  text-align: center;
  border-left: 1px solid #979797;
  float: left;
  height: 100%;
}
body.cart .cart .items-group .headers .cell:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-left: -0.25em;
}
body.cart .cart .items-group .headers .cell .content {
  display: inline-block;
  vertical-align: middle;
}
body.cart .cart .items-group .headers .index {
  width: 49px;
}
body.cart .cart .items-group .headers .image {
  width: 87px;
}
body.cart .cart .items-group .headers .title-and-specs {
  padding: 0 15px;
  width: 259px;
}
body.cart .cart .items-group .headers .size {
  width: 150px;
}
body.cart .cart .items-group .headers .price {
  width: 128px;
  padding: 0 30px;
}
body.cart .cart .items-group .headers .count {
  width: 107px;
  text-align: center;
  padding: 0 9px;
}
body.cart .cart .items-group .headers .count input {
  width: 100%;
  text-align: center;
  border: 1px solid #888888;
  border-radius: 8px;
}
body.cart .cart .items-group .headers .count input:focus {
  outline: none;
  border-color: #1085d4;
  box-shadow: 0 0 5px #0e76bc;
}
body.cart .cart .items-group .headers .discount {
  width: 78px;
}
body.cart .cart .items-group .headers .total {
  width: 121px;
  padding: 0 30px;
}
body.cart .cart .items-group .headers .discounted-total {
  width: 121px;
  padding: 0 10px;
}
body.cart .cart .items-group .headers .delete {
  width: 39px;
  background: #f5716e;
  color: white;
  border-bottom: 1px solid white;
}
body.cart .cart .items-group .cart-item {
  width: 100%;
  height: 100px;
  border-right: 1px solid #979797;
}
body.cart .cart .items-group .cart-item:before {
  content: " ";
  display: table;
}
body.cart .cart .items-group .cart-item:after {
  content: " ";
  clear: both;
  display: table;
}
body.cart .cart .items-group .cart-item .cell-group {
  float: left;
  height: 100%;
}
body.cart .cart .items-group .cart-item .cell-group.price-info {
  font-size: 1.285em;
}
body.cart .cart .items-group .cart-item .cell-group .cell {
  border-top: 1px solid #979797;
  vertical-align: middle;
  text-align: center;
  border-left: 1px solid #979797;
  height: 100%;
  float: left;
}
body.cart .cart .items-group .cart-item .cell-group .cell .sub-title {
  display: none;
}
body.cart .cart .items-group .cart-item .cell-group .index {
  width: 49px;
  font-size: 1.285em;
}
body.cart .cart .items-group .cart-item .cell-group .image {
  width: 87px;
  padding: 8px;
  vertical-align: middle;
  height: 100%;
  position: relative;
}
body.cart .cart .items-group .cart-item .cell-group .image.modal-link {
  cursor: pointer;
}
body.cart .cart .items-group .cart-item .cell-group .image .image-wrapper {
  position: relative;
}
body.cart .cart .items-group .cart-item .cell-group .image .image-wrapper > img {
  width: 100%;
}
body.cart .cart .items-group .cart-item .cell-group .image .image-wrapper .overlay {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
  vertical-align: middle;
  top: 0;
  left: 0;
  display: inline-block;
}
body.cart .cart .items-group .cart-item .cell-group .image .image-wrapper .overlay img {
  margin-top: 25px;
}
body.cart .cart .items-group .cart-item .cell-group .image:hover .overlay {
  opacity: 1;
}
body.cart .cart .items-group .cart-item .cell-group .title-and-specs {
  font-weight: bold;
  text-align: left;
  padding: 0 15px;
  width: 259px;
}
body.cart .cart .items-group .cart-item .cell-group .title-and-specs .title {
  font-size: 0.928em;
}
body.cart .cart .items-group .cart-item .cell-group .title-and-specs .specs {
  font-size: 0.857em;
  color: #888;
}
body.cart .cart .items-group .cart-item .cell-group .title-and-specs .specs span {
  padding: 0 5px;
  border-right: 1px solid #888;
}
body.cart .cart .items-group .cart-item .cell-group .title-and-specs .specs span:first-child {
  padding-left: 0;
}
body.cart .cart .items-group .cart-item .cell-group .title-and-specs .specs span:last-child {
  border-right: none;
}
body.cart .cart .items-group .cart-item .cell-group .size {
  width: 150px;
}
body.cart .cart .items-group .cart-item .cell-group .size .content {
  direction: rtl;
}
body.cart .cart .items-group .cart-item .cell-group .actions {
  display: none;
}
body.cart .cart .items-group .cart-item .cell-group .price {
  width: 128px;
}
body.cart .cart .items-group .cart-item .cell-group .count {
  width: 107px;
  text-align: center;
  padding: 0 9px;
}
body.cart .cart .items-group .cart-item .cell-group .count input {
  font-size: 0.9em;
  width: 100%;
  text-align: center;
  border: 1px solid #888888;
  border-radius: 8px;
  direction: rtl;
}
body.cart .cart .items-group .cart-item .cell-group .count input:focus {
  outline: none;
  border-color: #1085d4;
  box-shadow: 0 0 5px #0e76bc;
}
body.cart .cart .items-group .cart-item .cell-group .discounts {
  width: 78px;
}
body.cart .cart .items-group .cart-item .cell-group .discounts .discount {
  padding: 5px;
}
body.cart .cart .items-group .cart-item .cell-group .discounts .discount.selected {
  font-weight: bold;
  color: #2b6bb4;
  text-decoration: underline;
  padding: 5px;
}
body.cart .cart .items-group .cart-item .cell-group .total {
  width: 121px;
}
body.cart .cart .items-group .cart-item .cell-group .discounted-total {
  width: 121px;
}
body.cart .cart .items-group .cart-item .cell-group .delete {
  width: 39px;
  background-color: #f5716e;
  border-top: none;
  color: white;
}
body.cart .cart .items-group .cart-item .cell-group .delete .content {
  padding: 0 5px;
  cursor: pointer;
}
body.cart .cart .costs {
  text-align: center;
  margin-left: 545px;
  width: 556px;
}
body.cart .cart .costs > div:before {
  content: " ";
  display: table;
}
body.cart .cart .costs > div:after {
  content: " ";
  clear: both;
  display: table;
}
body.cart .cart .costs .cell {
  float: left;
  height: 55px;
}
body.cart .cart .costs .cell.i1 {
  font-size: 1.142em;
  width: 313px;
  border-bottom: 1px solid #979797;
  border-left: 1px solid #979797;
  font-weight: bold;
}
body.cart .cart .costs .cell.i2 {
  font-size: 1.275em;
  width: 243px;
  border-left: 1px solid #979797;
  border-bottom: 1px solid #979797;
}
body.cart .cart .costs .cell.i3 {
  font-size: 1.275em;
}
body.cart .cart .costs .cell label {
  font-weight: bold;
}
body.cart .cart .costs .total .cell.i2 {
  width: 121px;
}
body.cart .cart .costs .total .cell.i3 {
  width: 122px;
  border: 1px solid #979797;
  border-top: none;
}
body.cart .cart .costs .vat .cell.i1 {
  border-bottom: none;
}
body.cart .cart .costs .vat .cell.i2 {
  border-bottom: none;
  border-right: 1px solid #979797;
}
body.cart .cart .costs .payable {
  background: #cffdde;
}
body.cart .cart .costs .payable .cell {
  color: #019875;
}
body.cart .cart .costs .payable .cell.i1 {
  border: 1px solid #019828;
  border-right: none;
}
body.cart .cart .costs .payable .cell.i2 {
  border: 1px solid #019828;
  font-family: IranSansWeb;
  font-weight: bold;
}
body.cart .cart .costs-mobile {
  display: none;
}
body.cart .cart-footer {
  text-align: right;
  margin-top: 15px;
}

@media (max-width: 1200px) {
  body.cart .cart .actions .invoice.print {
    display: none;
  }
  body.cart .cart .items-group {
    border-bottom: none;
  }
  body.cart .cart .items-group .v-center:before {
    display: none;
  }
  body.cart .cart .items-group .headers {
    display: none;
  }
  body.cart .cart .items-group .cart-item {
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    margin-bottom: 10px;
    min-height: 100px;
    height: auto;
    border: none;
    font-size: 1em;
    overflow: hidden;
  }
  body.cart .cart .items-group .cart-item .cell-group {
    display: block;
    float: none;
    height: auto;
  }
  body.cart .cart .items-group .cart-item .cell-group .cell {
    border: none;
    width: auto;
    height: auto;
    display: block;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info {
    background: white;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .index {
    display: none;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .image {
    float: left;
    width: 100px;
    cursor: auto;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .image .overlay {
    display: none;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .title-and-specs {
    font-size: 1em;
    margin-top: 1em;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .actions {
    clear: none;
    border-top: none;
    float: right;
    padding-right: 20px;
    padding-top: 0;
    display: block;
    margin: 15px 0 15px 0;
    text-align: center;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .actions .detail-page-w {
    margin-bottom: 6px;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .actions .detail-page-w a {
    font-size: 0.875em;
    color: #888888;
    cursor: pointer;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .actions .btn-sm {
    border-radius: 25px;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info {
    background: #fafafa;
    border-top: 1px solid #ededed;
    padding: 16px 0;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell {
    display: inline-block;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell .sub-title {
    display: block;
    font-weight: bold;
    font-size: 0.667em;
    color: #888;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.size {
    width: 10%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.price {
    width: 18%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.count {
    width: 14%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.discounts {
    width: 14%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.total {
    width: 22%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.discounted-total {
    width: 22%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.delete {
    display: none;
  }
  body.cart .cart .costs {
    display: none;
  }
  body.cart .cart .costs-mobile {
    display: block;
  }
  body.cart .cart .costs-mobile .group-row.i1 {
    border: 1px solid #888888;
    background: #dcdcdc;
    border-radius: 8px;
    padding: 8px;
    margin-top: 15px;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row {
    text-align: center;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row.i1 {
    color: #2b6bb4;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row.i1 .checkbox {
    display: inline-block;
    margin: 0 15px;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row.i1 .no-wrap .title {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row.i1 .no-wrap .title:before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: -5px;
    top: 3px;
    background: url("/Images/tax.png") no-repeat;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row.i1 .no-wrap .value {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0 15px;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row.i2 .total {
    display: inline-block;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row.i2 .total .title {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row.i2 .total .title:before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: -5px;
    top: 3px;
    background: url("/Images/discount.png") no-repeat;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row.i2 .total .value {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0 15px;
    min-width: 125px;
  }
  body.cart .cart .costs-mobile .group-row.i1 .row.i2 .total.discounted .title:before {
    background: url("/Images/factor.png") no-repeat;
  }
  body.cart .cart .costs-mobile .payable {
    margin-top: 15px;
    text-align: center;
    font-size: 1.3em;
    color: #019875;
    font-weight: bold;
    border: 1px solid #019828;
    background: #cffdde;
    border-radius: 8px;
    padding: 8px;
  }
  body.cart .cart .costs-mobile .payable .title {
    display: inline-block;
  }
  body.cart .cart .costs-mobile .payable .value {
    display: inline-block;
    padding: 0 25px;
  }
}
@media (max-width: 550px) {
  body.cart h1 {
    text-align: center;
  }
  body.cart .inner-page-header .links-wrapper {
    text-align: center;
    float: none;
  }
  body.cart .inner-page-header .links-wrapper .btn {
    margin-left: 40px;
    margin-right: 40px;
    display: inline-block;
    margin-top: 8px;
  }
  body.cart .inner-page-header .actions {
    text-align: center;
  }
  body.cart .inner-page-header .actions .invoice {
    margin-left: 40px;
    margin-right: 40px;
    padding-right: 0;
    border-right: none;
  }
  body.cart .cart .actions {
    float: none;
    text-align: center;
    border: none;
  }
  body.cart .cart .actions .invoice {
    margin: 0 10%;
    padding-right: 0;
    border: none;
  }
  body.cart .cart .actions .invoice.download {
    border-top: 2px solid #dcdcdc;
    margin-top: 6px;
    padding-top: 6px;
  }
  body.cart .cart .items-group .v-center:before {
    display: inline-block;
  }
  body.cart .cart .items-group .cart-item {
    position: relative;
    padding-bottom: 60px;
    background: #fafafa;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .title-and-specs {
    float: none;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .title-and-specs:before {
    display: none;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .title-and-specs .content {
    display: block;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .actions {
    position: absolute;
    bottom: -3px;
    width: 100%;
    float: none;
    padding: 15px;
    margin: 0;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .actions .detail-page-w {
    width: 50%;
    float: right;
    height: 3em;
    margin-bottom: 0;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .actions .detail-page-w a.modal-link {
    font-size: 0.85em;
    margin-bottom: 0;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .actions .delete-w {
    width: 50%;
    float: left;
  }
  body.cart .cart .items-group .cart-item .cell-group.general-info .actions .delete-w a.btn {
    font-size: 0.85em;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell {
    border-bottom: 1px dashed #ededed;
    height: 75px;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.size {
    width: 50%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.price {
    width: 50%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.count {
    width: 50%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.count input {
    width: 50%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.discounts {
    width: 50%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.total {
    width: 50%;
  }
  body.cart .cart .items-group .cart-item .cell-group.price-info .cell.discounted-total {
    width: 50%;
  }
  body.cart .footer .button-wrapper {
    text-align: left;
  }
  body.cart .footer .button-wrapper .btn {
    min-width: 150px;
  }
}
@media (max-width: 411px) {
  body.cart .links-wrapper {
    text-align: center;
  }
  body.cart .links-wrapper .btn {
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    margin-top: 8px;
  }
  body.cart .inner-page-header .actions {
    text-align: center;
  }
  body.cart .inner-page-header .actions .invoice {
    margin-left: 10px;
    margin-right: 10px;
    padding-right: 0;
    border-right: none;
  }
}
.fade-enter-active, .fade-leave-active {
  transition: opacity 1s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.cart-submit.modal .modal-content .modal-body {
  position: relative;
  z-index: 1;
  padding: 20px 40px 0 40px;
  text-align: center;
}
.cart-submit.modal .modal-content .modal-body .cart.active .payable {
  font-size: 2.5em;
  color: #0e76bc;
  font-weight: bold;
  margin-top: 40px;
}
.cart-submit.modal .modal-content .modal-body .payment-type .title {
  font-size: 1.2em;
  margin-top: 30px;
  color: #888888;
}
.cart-submit.modal .modal-content .modal-body .payment-type .radio-list {
  text-align: left;
  display: inline-block;
}
.cart-submit.modal .modal-content .modal-body.step-1 .footer .back-button {
  display: none;
}
.cart-submit.modal .modal-content .modal-body.step-2 .payment-type > .title {
  display: none;
}
.cart-submit.modal .modal-content .modal-body.step-2 .payment-type .radio-list {
  margin-top: 30px;
}
.cart-submit.modal .modal-content .modal-body.step-2 .radio {
  display: none;
}
.cart-submit.modal .modal-content .modal-body.step-2 .radio.active {
  display: block;
  color: #0e76bc;
}
.cart-submit.modal .modal-content .modal-body.step-2 .hint {
  padding: 25px 0;
  font-size: 1.2em;
}
.cart-submit.modal .modal-content .modal-body.step-2 .credit-payment-description {
  resize: none;
  border-radius: 10px;
  height: 120px;
}
.cart-submit.modal .modal-content .modal-body.step-3 > .title {
  font-size: 1.2em;
  color: #888888;
}
.cart-submit.modal .modal-content .modal-body.step-3 .radio-list {
  display: block;
  text-align: left;
}
.cart-submit.modal .modal-content .modal-body.step-3 .address-form {
  text-align: left;
}
.cart-submit.modal .modal-content .modal-body.step-3 .address-form .form-control {
  border-radius: 10px;
  font-size: 1em;
}
.cart-submit.modal .modal-content .modal-body label {
  font-weight: normal;
}
.cart-submit.modal .modal-content .modal-body .modal-header {
  padding: 0;
}
.cart-submit.modal .modal-content .modal-body .modal-header .title {
  font-size: 2em;
  text-align: center;
}
.cart-submit.modal .modal-content .modal-body .empty-cart > .title {
  font-size: 1.3em;
  font-weight: bold;
  color: #60d3db;
  margin: 35px 0;
}
.cart-submit.modal .modal-content .modal-body .empty-cart .p1 {
  font-size: 1.3em;
  font-weight: bold;
  text-align: justify;
  line-height: 1.9em;
}
.cart-submit.modal .modal-content .modal-body .empty-cart .p2 {
  text-align: justify;
}
.cart-submit.modal .modal-content .modal-body.invoice-submitted .h1 {
  color: #0e76bc;
}
.cart-submit.modal .modal-content .modal-body.invoice-submitted .hint {
  font-size: 1.1em;
  color: #888888;
  width: 210px;
  margin: 25px auto;
}
.cart-submit.modal .modal-content .modal-body.invoice-submitted .description {
  font-size: 1.1em;
  font-weight: bold;
  width: 292px;
  margin: auto;
}
.cart-submit.modal .modal-content .modal-body.invoice-submitted .description .invoice-id {
  color: #0e76bc;
}
.cart-submit.modal .modal-content .modal-body.invoice-submitted .button-wrapper {
  margin: 32px 0;
}
.cart-submit.modal .modal-content .modal-body.invoice-submitted .button-wrapper .btn {
  min-width: 220px;
}
.cart-submit.modal .modal-content .shipping-address {
  margin-top: 45px;
}
.cart-submit.modal .modal-content .shipping-address:before {
  content: " ";
  display: table;
}
.cart-submit.modal .modal-content .shipping-address:after {
  content: " ";
  clear: both;
  display: table;
}
.cart-submit.modal .modal-content .shipping-address .address-titles {
  float: left;
  width: 30%;
}
.cart-submit.modal .modal-content .shipping-address .address-titles .title {
  padding: 25px 10px;
  background: #f5f5f1;
  border: 1px solid #dddddd;
  text-align: center;
  border-right-color: #f5f5f1;
  border-radius: 8px 0 0 8px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  margin-left: 15px;
}
.cart-submit.modal .modal-content .shipping-address .address-titles .title.selected {
  cursor: auto;
  font-weight: bold;
  margin-left: 0;
}
.cart-submit.modal .modal-content .shipping-address .address-titles .title + .title {
  margin-top: 8px;
  color: gray;
}
.cart-submit.modal .modal-content .shipping-address .address-form {
  padding: 25px;
  background: #f5f5f1;
  border: 1px solid #dddddd;
  border-radius: 0 8px 8px 8px;
  float: left;
  margin-left: -1px;
  position: relative;
  z-index: 1;
  text-align: left;
  width: 70%;
}
.cart-submit.modal .modal-content .shipping-address .address-form .select-wrapper {
  display: block;
}
.cart-submit.modal .modal-content .shipping-address .red {
  color: red;
}
.cart-submit.modal .modal-content .shipping-address .error {
  white-space: nowrap;
}

.add-to-cart-wrapper {
  padding: 5px 0 0 0;
}

.add-to-cart-wrapper .add-to-cart {
  margin-left: 5px;
}

.add-to-cart-wrapper .add-to-cart i {
  margin-right: 5px;
}

.add-to-cart-wrapper .quantity {
  vertical-align: middle;
}

.add-to-cart-wrapper .buy-options {
  margin: 0;
  padding: 0;
}

.add-to-cart-wrapper .buy-options .buy-option-wrapper {
  margin: 0;
  padding: 0 0 0 10px;
  list-style: none;
  line-height: 1.8em;
}

.add-to-cart-wrapper .buy-options .buy-option {
  float: left;
  line-height: 1.8em;
}

.add-to-cart-wrapper .buy-options label {
  margin: 0 5px 0 5px;
}

.add-to-cart-wrapper .button {
  padding: 5px 0 10px 10px;
}

.mini-cart-summary {
  position: relative;
  float: right;
  z-index: 1500;
}

.mini-cart-summary .mini-cart {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
}

.mini-cart {
  background: #FFFFFF;
  border: 1px solid #cbcbcb;
  border-radius: 0 0 5px 5px;
  box-shadow: -3px 3px 8px #e4e4e4;
  padding: 10px;
}

.mini-cart .label-td {
  font-size: 80%;
  font-weight: bold;
}

.mini-cart .cart-items table {
  border-spacing: 0;
}

.mini-cart th {
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid gray;
  padding-bottom: 10px;
}

.mini-cart .cart-item td {
  padding: 5px 10px;
}

.mini-cart .cart-item .price .before-discount {
  text-decoration: line-through;
}

.mini-cart .cart-item-options .option-title {
  float: left;
}

.mini-cart .cart-item-options .option-value {
  float: left;
  margin-left: 5px;
}

.mini-cart .cart-item-options .separator {
  float: left;
  text-align: center;
  width: 15px;
}

.mini-cart .cart-item-options .option-separator {
  float: left;
  text-align: center;
  width: 7px;
}

.mini-cart .button-wrapper {
  margin-top: 15px;
  text-align: center;
}

.mini-cart .details {
  border-top: 1px solid #808080;
  margin-top: 15px;
}

.mini-cart .details table {
  width: 100%;
}

.mini-cart .details td.value {
  text-align: right;
}

.mini-cart .details td.value span {
  direction: rtl;
}

.mini-cart .result {
  border-top: 2px solid #808080;
  margin-top: 5px;
}

.mini-cart .result table {
  width: 100%;
}

.mini-cart .result td.value {
  text-align: right;
}

.mini-cart .result td.value span {
  direction: rtl;
}

.mini-cart .empty-cart {
  display: none;
  white-space: nowrap;
}

#shop-cart .cart-items-wrapper {
  border: 1px solid #B0B2B2;
  position: relative;
  padding: 8px 5px;
  margin-bottom: 18px;
}

#shop-cart .cart-items-wrapper .empty-cart {
  padding: 28px;
  text-align: center;
  display: none;
}

#shop-cart .legend {
  background: white;
  display: inline-block;
  padding: 0 8px;
  position: absolute;
  left: 10px;
  top: -11px;
}

#shop-cart #cart-items {
  margin-top: -28px;
}

#shop-cart #cart-items > table {
  width: 100%;
}

#shop-cart #cart-items > table th {
  text-align: center;
}

#shop-cart #cart-items > table th span {
  background: white;
  display: inline-block;
  margin-top: -5px;
  padding: 5px;
  font-weight: normal;
  font-size: 11px;
}

#shop-cart #cart-items > table .separator {
  border-top: 1px dashed #808080;
  margin: 10px;
}

#shop-cart .cart-item .specifications {
  vertical-align: top;
}

#shop-cart .cart-item .specifications .cart-item-options {
  margin-top: 8px;
}

#shop-cart .cart-item .specifications .option-title {
  text-align: right;
}

#shop-cart .cart-item .specifications .remove {
  display: inline-block;
  margin: 15px 0 0;
  cursor: pointer;
}

#shop-cart .cart-item .specifications .remove .icon {
  margin-right: 5px;
  vertical-align: middle;
}

#shop-cart .cart-item .specifications h2.title {
  margin: 0 2px 7px;
}

#shop-cart .cart-item .specifications h2.title a {
  font-size: 16pt;
}

#shop-cart .cart-item .price {
  text-align: center;
  vertical-align: top;
  color: black;
}

#shop-cart .cart-item .discount {
  text-align: center;
  vertical-align: top;
}

#shop-cart .cart-item .count {
  text-align: center;
  vertical-align: top;
}

#shop-cart .cart-item .total {
  text-align: center;
  vertical-align: top;
  color: #09804c;
}

#shop-cart .info #invoice-results {
  border: 1px solid #B0B2B2;
  position: relative;
  padding: 8px 5px;
  border-radius: 5px;
  float: right;
}

#shop-cart .info #invoice-results > table {
  width: 285px;
}

#shop-cart .info #invoice-results > table .separator {
  border-top: 2px solid gray;
}

#shop-cart .info #invoice-results > table .label {
  text-align: left;
}

#shop-cart .info #invoice-results > table .value {
  text-align: right;
}

#shop-cart .info .navigation {
  float: left;
  margin: 50px 0 0 130px;
}

#shop-cart .shipping {
  border: 1px solid #B0B2B2;
  position: relative;
  padding: 10px 5px 8px;
  margin-bottom: 10px;
}

#shop-cart .shipping .shipping-type {
  float: left;
}

#shop-cart .shipping #shipping-cost {
  float: right;
  margin-right: 5px;
}

#shop-cart .shipping #shipping-cost .shipment {
  padding: 0 5px;
}

#shop-cart .shipping #target-location {
  display: none;
  float: left;
  margin-left: 10px;
}

#shop-cart #shipping-address {
  border: 1px solid #B0B2B2;
  position: relative;
  padding: 8px 5px;
  margin-bottom: 10px;
}

#shop-cart #shipping-address > table {
  width: 100%;
}

#shop-cart #shipping-address .titles {
  width: 40%;
  vertical-align: top;
}

#shop-cart #shipping-address .titles .title-wrapper {
  margin-top: 5px;
  position: relative;
}

#shop-cart #shipping-address .titles .title {
  background: #d0d0d0;
  border: 1px solid #808080;
  position: relative;
  padding: 15px;
  cursor: pointer;
}

#shop-cart #shipping-address .titles .title.active {
  background: white;
  border-right: none;
  right: -4px;
  cursor: default;
}

#shop-cart #shipping-address .details {
  width: 60%;
  border-left: 1px solid gray;
  padding-left: 8px;
}

#shop-cart .payment-type table {
  display: inline-block;
  vertical-align: middle;
}

#shop-cart.empty .part.stage-1 {
  display: none;
}

#shop-cart.empty .part.stage-2 {
  display: none;
}

#shop-cart.empty .part.stage-3 {
  display: none;
}

#shop-cart.empty .info {
  display: none;
}

#shop-cart.empty .part.cart-items-wrapper {
  display: block;
}

#shop-cart.empty #cart-items {
  display: none;
}

#shop-cart.empty .empty-cart {
  display: block;
}

#shop-cart.stage-1 .part {
  display: none;
}

#shop-cart.stage-1 .stage-1 {
  display: block;
}

#shop-cart.stage-2 .part {
  display: none;
}

#shop-cart.stage-2 .stage-2 {
  display: block;
}

#shop-cart.stage-3 .part {
  display: none;
}

#shop-cart.stage-3 .stage-3 {
  display: block;
}

/*Chat*/
#chat-box {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 320px;
  z-index: 100;
  display: none;
}
#chat-box.online {
  display: block;
}
#chat-box .panel {
  margin-bottom: 0;
}
#chat-box .panel-body {
  overflow: auto;
  max-height: 250px;
}
#chat-box .online {
  display: none;
}
#chat-box.online .online {
  display: block;
}
#chat-box.online .offline {
  display: none;
}
#chat-box .discussion {
  list-style: none;
  margin: 0;
  padding: 0;
}
#chat-box .discussion li {
  overflow: hidden;
  padding: 5px 5px 10px;
}
#chat-box .discussion .avatar {
  position: relative;
  width: 50px;
  height: 50px;
  display: inline;
  overflow: hidden;
}
#chat-box .other .message {
  margin-right: 62px;
  background: #e0c244;
}
#chat-box .other .message:after {
  -moz-border-bottom-colors: none;
  -moz-border-right-colors: none;
  -moz-border-left-colors: none;
  -moz-border-top-colors: none;
  border-color: #e0c244 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e0c244;
  border-style: solid;
  border-width: 5px;
  content: "";
  height: 0;
  position: absolute;
  right: -9px;
  top: 0;
  width: 0;
}
#chat-box .other .avatar {
  float: right;
}
#chat-box .self .message {
  border-bottom-left-radius: 0;
  margin-left: 62px;
  background: #5fd3db;
  color: #ffffff;
}
#chat-box .self .avatar {
  float: left;
}
#chat-box .self .message:after {
  -moz-border-bottom-colors: none;
  -moz-border-right-colors: none;
  -moz-border-left-colors: none;
  -moz-border-top-colors: none;
  border-color: #5fd3db #5fd3db rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 5px;
  top: 0;
  content: "";
  height: 0;
  left: -9px;
  position: absolute;
  width: 0;
}
#chat-box .avatar img {
  width: 100%;
}
#chat-box .message {
  border-radius: 2px 2px 2px 2px;
  padding: 10px;
  position: relative;
}
#chat-box .message p {
  font-size: 14px;
  margin: 0 0 0.2em;
}
#chat-box .message time {
  color: #333333;
  font-size: 11px;
}
#chat-box .self .message time {
  color: #ffffff;
}
#chat-box #chat-form {
  position: relative;
}
#chat-box #chat-form .text-input {
  padding-right: 70px;
}
#chat-box #chat-form .submit.btn {
  position: absolute;
  right: 2px;
  top: 3px;
  z-index: 2;
}

/*CompareTemplate*/
.compare-template .well {
  margin-bottom: 0;
}

.compare-template .compare-table {
  width: 100%;
  border-spacing: 1px;
}

.compare-template .compare-table tr {
  border-top: 1px solid rgb(228, 228, 228);
}

.compare-template .compare-table .items-row {
  border: none;
}

.compare-template .compare-table .items-row.scroll-to-fixed-fixed {
  background: white;
}

.compare-template .compare-table .items-row.scroll-to-fixed-fixed th {
  float: left;
}

.compare-template .compare-table tr td {
  padding: 5px;
}

.compare-template .compare-table td.value {
  font-size: 0.9em;
}

.compare-template .compare-table tr:hover {
  padding: 5px;
  background: #e9e9e9;
}

.compare-template .compare-table .column.title {
  color: #585858;
  min-width: 150px;
  width: 35%;
  padding-left: 10px;
}

.compare-template .compare-table .group-header .column.title {
  padding: 0;
}

.compare-template .compare-table .group-header {
  border: none;
}

.compare-template .compare-table .group-header:hover {
  background-color: white;
}

.compare-template .compare-table .group-header .group-title {
  background: #00c7ac;
  color: white;
  font-size: 1em;
  padding: 5px 10px;
  font-weight: 700;
  transform: rotate(0deg);
}

/*.compare-template { }
    .compare-template .compare-table { width: 100%; border-spacing: 1px; }
        .compare-template .compare-table .items-row.scroll-to-fixed-fixed { background: white; }
            .compare-template .compare-table .items-row.scroll-to-fixed-fixed th { float: right; }
        .compare-template .compare-table td { padding: 5px; background: white; border-bottom: 1px solid silver; }
            .compare-template .compare-table td.value {  }
        .compare-template .compare-table tr:hover td { padding: 5px; background: #e9e9e9; }
        .compare-template .compare-table .column.title { background: #e9e9e9; color: #585858; border-bottom: 1px solid silver; }
        .compare-template .compare-table .group-header .column.title { padding: 0; }
        .compare-template .compare-table .group-header .group-title { background: #09C8B7; color: white; font-size: 10pt; padding: 5px; font-weight: 700; }*/
.compare-template .top-right-cell {
  padding: 5px;
}

.compare-template .compare-td-2 {
  width: 50%;
}

.compare-template .compare-td-3 {
  width: 33.33334%;
}

.compare-template .compare-td-4 {
  width: 25%;
}

.compare-template .compare-td-5 {
  width: 20%;
}

.compare-template .compare-td-6 {
  width: 16.66667%;
}

.compare-template .compare-td-6 .compare-item {
  min-height: 135px;
}

.compare-template .compare-item {
  text-align: center;
  min-height: 120px;
  position: relative;
  margin: auto;
  margin-bottom: 5px;
}

.compare-template .compare-item .title {
  color: #2c2c2c;
  margin: 10px 10px 5px 5px;
}

.compare-template .compare-item:hover {
  border: 1px solid #606060;
}

.compare-template .compare-item .remove {
  display: block;
  height: 16px;
  right: 10px;
  position: absolute;
  top: 5px;
  width: 16px;
  cursor: pointer;
  opacity: 0.6;
  filter: alpha(opacity=60);
  color: red;
}

.compare-template .compare-item:hover span.remove {
  opacity: 1;
  filter: alpha(opacity=100);
}

.compare-template .compare-item a {
  display: block;
}

/*Compare*/
#compare-wrapper {
  display: none;
  border-bottom: 1px solid silver;
  margin-bottom: 25px;
}

#compare-wrapper .button-wrapper {
  float: right;
}

#compare-wrapper .button-wrapper i {
  margin-right: 5px;
}

#compare-wrapper #compare-list a.compare-item {
  float: left;
  margin: 0 10px 15px;
  padding: 6px;
  text-align: center;
  width: 120px;
  height: 170px;
  position: relative;
  cursor: auto;
}

#compare-wrapper #compare-list a.compare-item span.title {
  display: block;
  cursor: pointer;
}

#compare-list a.compare-item .remove {
  display: block;
  height: 16px;
  right: 8px;
  position: absolute;
  top: 5px;
  width: 16px;
  cursor: pointer;
  opacity: 0.6;
  filter: alpha(opacity=60);
  color: red;
  font-size: 1em;
}

/*ContactUs*/
/*****Shared**********/
/********Contact-Us**********/
.contact-us .contact-form {
  border: 1px dashed #979797;
  border-radius: 8px;
  position: relative;
  padding: 45px;
}
.contact-us .contact-form:before {
  content: "";
  width: 50px;
  height: 1px;
  border-bottom: 1px dashed #979797;
  position: absolute;
  top: 17px;
  left: -7px;
  transform: rotate(45deg);
}
.contact-us .contact-form:after {
  content: "";
  width: 50px;
  height: 1px;
  border-bottom: 1px dashed #979797;
  position: absolute;
  top: 17px;
  right: -7px;
  transform: rotate(-45deg);
}
.contact-us .contact-form .title {
  font-size: 1.71em;
  margin-top: 15px;
  margin-bottom: 40px;
}
.contact-us .contact-form label.control-label {
  color: #acacac;
}
.contact-us .contact-form img {
  display: block;
}
.contact-us .contact-data address {
  margin-top: 20px;
}
.contact-us .contact-data address svg {
  color: #0e76bc;
}

/*DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD*/
/*Default*/
.main-content-wrapper.default {
  padding: 0;
}

/*Download*/
/*****Shared**********/
.download.list {
  /*.item { display: block; margin: 10px; text-align: center; padding: 20px 5px; font-size: 1.8rem;
      .title { line-height: 1; margin-top: 10px; }
      .dscp { color: $blue; }
  }*/
}
.download.list .download-item {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.15);
  padding: 20px;
  border-radius: 15px;
}
.download.list .download-item .img-w {
  margin-bottom: 20px;
  height: 250px;
}
.download.list .download-item .img-w img {
  width: 100%;
  border-radius: 7px;
  height: 100%;
  object-fit: cover;
}
.download.list .download-item .details {
  padding: 0 10px;
}
.download.list .download-item .details .title {
  font-weight: 400;
  font-size: 1.6rem;
  margin: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.download.list .download-item .details .title a {
  white-space: normal;
  line-height: 2;
  font-weight: 600;
}
.download.list .download-item .details .summary {
  font-weight: 500;
  font-size: 1.8rem;
  margin: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.download.list .download-item .details .summary a {
  white-space: normal;
  line-height: 2;
  font-weight: 600;
}
.download.list .download-item .details .footer {
  font-size: 1.4rem;
}
.download.list .download-item .details .footer i {
  vertical-align: middle;
  margin-left: 5px;
  color: #9fc8e4;
}
/*EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE*/
/*EditInPlace*/
.edit-in-place.toolbar .toolbar-button {
  height: 22px;
  width: 22px;
  border: none;
  background: url(/images/admin/glyphicons-halflings-white.png) no-repeat;
  cursor: pointer;
}

.edit-in-place.toolbar .save {
  background-position: -68px -92px;
}

.edit-in-place.toolbar .save.saved {
  background-position: -284px 4px;
  cursor: auto;
}

.edit-in-place.toolbar .edit {
  background-position: -90px -68px;
}

.edit-in-place.toolbar .edit-in-panel {
  background-position: 4px -68px;
}

.edit-in-place.toolbar .cancel {
  background-position: -212px -92px;
}

/*FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF*/
/*FaqList*/
.faq-list .questions .item {
  padding: 5px;
}

.faq-list .questions .item i {
  color: orange;
  margin-right: 5px;
  line-height: 1.5em;
}

.faq-list .questions .item .questioner {
  font-weight: bold;
  color: #7c9dc5;
  line-height: 1.5em;
}

.faq-list .questions .item .questioner .link {
  font-weight: bold;
  color: #7c9dc5;
  line-height: 1.5em;
}

.faq-list .questions .item .link {
  font-weight: bold;
  line-height: 1.5em;
}

.faq-list .questions-and-answers {
  margin-top: 15px;
  padding: 10px;
}

.faq-list .questions-and-answers .item + .item {
  border-top: dotted 1px silver;
  padding: 10px 0 10px 0;
}

.faq-list .questions-and-answers .item .questioner {
  line-height: 1.2em;
}

.faq-list .questions-and-answers .item .questioner i {
  color: rgb(57, 103, 164);
  margin-right: 5px;
  line-height: 1.2em;
}

.faq-list .questions-and-answers .item .question {
  color: #0e1f76;
}

.faq-list .questions-and-answers .item .question i {
  color: orange;
  line-height: 1em;
  margin-right: 5px;
}

.faq-list .questions-and-answers .item .answer {
  margin: 10px 0 10px 0;
}

.faq-list .questions-and-answers .item .answer i {
  color: rgb(1, 140, 127);
  line-height: 1em;
  margin-right: 5px;
}

.faq-list #form {
  margin-top: 20px;
}

.faq-list .form .column.label span {
  color: #585858;
}

/*FaxSend*/
.fax-send.modal .modal-content .modal-body {
  position: relative;
  z-index: 1;
  padding: 20px 40px 0 40px;
  text-align: center;
}
.fax-send.modal .modal-content .modal-body .modal-header {
  padding: 0;
}
.fax-send.modal .modal-content .modal-body .modal-header .title {
  font-size: 2em;
  text-align: center;
}
.fax-send.modal .modal-content .modal-body > .title {
  font-size: 1.2em;
  color: #888888;
  margin: 25px auto 15px auto;
}
.fax-send.modal .modal-content .modal-body #fax-form .wrapper {
  max-width: 290px;
  margin: auto;
  text-align: left;
}
.fax-send.modal .modal-content .modal-body #fax-form .wrapper .hint {
  padding-left: 15px;
  color: #acacac;
  font-weight: normal;
  display: block;
}
.fax-send.modal .modal-content .modal-body #fax-form .wrapper .field-validation-error {
  padding-left: 15px;
}
.fax-send.modal .modal-content .modal-body #fax-form .button-wrapper {
  margin: 25px auto 25px auto;
}
.fax-send.modal .modal-content .modal-body #fax-form .button-wrapper .btn {
  min-width: 220px;
}
.fax-send.modal .modal-content .modal-body #fax-form .validation-summary-errors {
  text-align: left;
}

/*GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG*/
/*****Shared**********/
/*****Shared**********/
.gallery .gallery-container {
  background-color: #fff;
  padding: 80px 0;
}
.gallery .gallery-container .item {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background-color: #fafafa;
  margin-bottom: 20px;
}
.gallery .gallery-container .item .img-wrap {
  text-align: center;
  padding: 15px;
}
.gallery .gallery-container .item .img-wrap a {
  overflow: hidden;
}
.gallery .gallery-container .item .img-wrap a img {
  mix-blend-mode: multiply;
  transition: all 0.3s ease;
}
.gallery .gallery-container .item .txt-wrap {
  position: relative;
  padding: 15px 15px 15px;
}
.gallery .gallery-container .item .txt-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  width: 245px;
  height: 2px;
  margin: 0 auto;
  background-color: #e5e5e5;
}
.gallery .gallery-container .item .txt-wrap h2 a {
  display: block;
  font-size: 18px;
  font-weight: bold;
}
.gallery .gallery-container .item .txt-wrap p {
  display: block;
  font-size: 15px;
  margin: 0;
}
.gallery .gallery-container .item:hover .img-wrap a img {
  transform: scale(1.05);
}
.gallery .gallery-container .item:hover .txt-wrap h2 a {
  color: var(--bs-primar);
}
.gallery .gallery-container .item:hover .more-link a {
  padding: 0 50px;
}
.gallery .gallery-container .item .more-link {
  text-align: center;
  margin-top: 15px;
}
.gallery .gallery-container .item .more-link a {
  line-height: 38px;
  color: #fff;
  background-color: var(--bs-secondary);
  padding: 0 25px;
  border-radius: 5px;
}

.gallery-container #gallery-thumbnails .image-thumbnail {
  border: 1px solid #e4e4e4;
  text-align: center;
  padding: 10px;
  max-height: 100%;
  transition: 0.3s all;
}
.gallery-container #gallery-thumbnails .image-thumbnail:hover {
  box-shadow: -6px 6px 14px 0px #b5b5b5;
}
.gallery-container #gallery-thumbnails .image-thumbnail img {
  object-fit: cover;
  max-height: 100%;
  height: 100%;
}
.gallery-container .lg-outer .lg-inner {
  direction: ltr;
}
.gallery-container .main-title {
  color: var(--bs-primar);
}
.gallery-container .main-title .border {
  border-bottom: 2px solid var(--bs-primar);
  display: block;
  margin: 20px 0;
  width: 50%;
}

.inline-gallery-container {
  direction: ltr;
  width: 100%;
  padding-bottom: 65%;
  margin: 30px auto;
  display: none;
}

/*Gallery*/
.gallery .header .title {
  float: left;
}

.gallery .header .title h1 {
  display: inline;
  margin-right: 10px;
  font-size: 1.2em;
}

.gallery .back-button {
  float: right;
}

.gallery .item {
  margin: 10px 0;
  text-align: center;
}

.gallery .item .link-wrapper {
  margin-top: 10px;
}

.gallery .item .image-wrapper .item-img {
  width: 100%;
}

/*HHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH*/
/*****Shared**********/
/********Comment**********/
.html-page .banner-container {
  text-align: center;
  margin-top: 33px;
}
.html-page .banner-container .page-banner {
  max-width: 100%;
}
.html-page h1 {
  font-size: 2.42em;
  font-family: IranSansWeb;
  font-weight: 300;
  font-weight: 300;
  text-align: left;
  color: #444444;
}

/*JJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJJ*/
/*IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII*/
/*****Shared**********/
body.invoice-detail .title-wrapper h1 {
  font-size: 2.3em;
  margin-top: 28px;
  margin-bottom: 6px;
}
body.invoice-detail .title-wrapper .date-and-time {
  color: #888888;
  font-size: 1.2em;
}
body.invoice-detail .title-wrapper .date-and-time .value {
  font-weight: bold;
}
body.invoice-detail .inner-page-header .actions {
  clear: both;
  float: right;
  margin-bottom: 8px;
  padding-top: 8px;
}
body.invoice-detail .inner-page-header .actions .invoice {
  display: inline-block;
  margin-right: 8px;
  padding-right: 14px;
  border-right: 1px solid #ededed;
  padding-left: 35px;
  position: relative;
}
body.invoice-detail .inner-page-header .actions .invoice:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: -5px;
  top: 3px;
}
body.invoice-detail .inner-page-header .actions .invoice.fax:after {
  background: url("/Images/fax-print.png") no-repeat;
}
body.invoice-detail .inner-page-header .actions .invoice.print:after {
  background: url("/Images/print.png") no-repeat;
}
body.invoice-detail .inner-page-header .actions .invoice.download {
  padding-right: 0;
  border-right: none;
}
body.invoice-detail .inner-page-header .actions .invoice.download:after {
  background: url("/Images/download.png") no-repeat;
}
body.invoice-detail .invoice {
  clear: both;
}
body.invoice-detail .invoice .headers {
  height: 60px;
  background-color: #ededed;
  border-top: 1px solid #979797;
  border-right: 1px solid #979797;
  font-size: 0.9em;
  font-family: IranSansWeb;
  font-weight: bold;
}
body.invoice-detail .invoice .headers .cell {
  text-align: center;
  border-left: 1px solid #979797;
  float: left;
  height: 100%;
}
body.invoice-detail .invoice .headers .cell:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-left: -0.25em;
}
body.invoice-detail .invoice .headers .cell .content {
  display: inline-block;
  vertical-align: middle;
}
body.invoice-detail .invoice .headers .index {
  width: 50px;
}
body.invoice-detail .invoice .headers .image {
  width: 90px;
}
body.invoice-detail .invoice .headers .title-and-specs {
  padding: 0 15px;
  width: 394px;
}
body.invoice-detail .invoice .headers .size {
  width: 149px;
}
body.invoice-detail .invoice .headers .price {
  width: 129px;
}
body.invoice-detail .invoice .headers .count {
  width: 79px;
  text-align: center;
  padding: 0 9px;
}
body.invoice-detail .invoice .headers .count input {
  width: 100%;
  text-align: center;
  border: 1px solid #888888;
  border-radius: 8px;
}
body.invoice-detail .invoice .headers .count input:focus {
  outline: none;
  border-color: #1085d4;
  box-shadow: 0 0 5px #0e76bc;
}
body.invoice-detail .invoice .headers .discount {
  width: 78px;
}
body.invoice-detail .invoice .headers .total {
  width: 130px;
}
body.invoice-detail .invoice .headers .discounted-total {
  width: 130px;
}
body.invoice-detail .invoice .headers .delete {
  width: 45px;
  background: #f5716e;
  color: white;
  border-bottom: 1px solid white;
}
body.invoice-detail .invoice .invoice-item {
  width: 100%;
  height: 100px;
  border-right: 1px solid #979797;
  font-size: 1.275em;
}
body.invoice-detail .invoice .invoice-item:last-child {
  border-bottom: 1px solid #979797;
}
body.invoice-detail .invoice .invoice-item:before {
  content: " ";
  display: table;
}
body.invoice-detail .invoice .invoice-item:after {
  content: " ";
  clear: both;
  display: table;
}
body.invoice-detail .invoice .invoice-item .cell-group {
  float: left;
  height: 100%;
}
body.invoice-detail .invoice .invoice-item .cell-group .cell {
  border-top: 1px solid #979797;
  vertical-align: middle;
  text-align: center;
  border-left: 1px solid #979797;
  height: 100%;
  float: left;
}
body.invoice-detail .invoice .invoice-item .cell-group .cell .sub-title {
  display: none;
}
body.invoice-detail .invoice .invoice-item .cell-group .index {
  width: 50px;
}
body.invoice-detail .invoice .invoice-item .cell-group .image {
  width: 90px;
  padding: 8px;
  vertical-align: middle;
  height: 100%;
  position: relative;
}
body.invoice-detail .invoice .invoice-item .cell-group .image .image-wrapper {
  position: relative;
}
body.invoice-detail .invoice .invoice-item .cell-group .image .image-wrapper > img {
  max-width: 100%;
}
body.invoice-detail .invoice .invoice-item .cell-group .image .image-wrapper .overlay {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  opacity: 0;
  transition: all 0.3s;
  vertical-align: middle;
  top: 0;
  left: 0;
  display: inline-block;
}
body.invoice-detail .invoice .invoice-item .cell-group .image .image-wrapper .overlay img {
  margin-top: 25px;
}
body.invoice-detail .invoice .invoice-item .cell-group .image:hover .overlay {
  opacity: 1;
}
body.invoice-detail .invoice .invoice-item .cell-group .title-and-specs {
  font-weight: bold;
  font-size: 0.78em;
  text-align: left;
  padding: 0 15px;
  width: 394px;
}
body.invoice-detail .invoice .invoice-item .cell-group .title-and-specs .specs {
  font-size: 0.85em;
  color: #888;
  font-family: IranSansWeb;
}
body.invoice-detail .invoice .invoice-item .cell-group .title-and-specs .specs span {
  padding: 0 5px;
  border-right: 1px solid #888;
}
body.invoice-detail .invoice .invoice-item .cell-group .title-and-specs .specs span:first-child {
  padding-left: 0;
}
body.invoice-detail .invoice .invoice-item .cell-group .title-and-specs .specs span:last-child {
  border-right: none;
}
body.invoice-detail .invoice .invoice-item .cell-group .size {
  width: 149px;
}
body.invoice-detail .invoice .invoice-item .cell-group .actions {
  display: none;
}
body.invoice-detail .invoice .invoice-item .cell-group .price {
  width: 129px;
}
body.invoice-detail .invoice .invoice-item .cell-group .count {
  width: 79px;
  text-align: center;
  padding: 0 9px;
}
body.invoice-detail .invoice .invoice-item .cell-group .count input {
  font-size: 0.9em;
  width: 100%;
  text-align: center;
  border: 1px solid #888888;
  border-radius: 8px;
  direction: rtl;
}
body.invoice-detail .invoice .invoice-item .cell-group .count input:focus {
  outline: none;
  border-color: #1085d4;
  box-shadow: 0 0 5px #0e76bc;
}
body.invoice-detail .invoice .invoice-item .cell-group .discounts {
  width: 78px;
}
body.invoice-detail .invoice .invoice-item .cell-group .discounts .discount {
  padding: 5px;
}
body.invoice-detail .invoice .invoice-item .cell-group .discounts .discount.selected {
  font-weight: bold;
  color: #2b6bb4;
  text-decoration: underline;
  padding: 5px;
}
body.invoice-detail .invoice .invoice-item .cell-group .total {
  width: 130px;
}
body.invoice-detail .invoice .invoice-item .cell-group .discounted-total {
  width: 130px;
}
body.invoice-detail .invoice .invoice-item .cell-group .delete {
  width: 45px;
  background-color: #f5716e;
  border-top: none;
  color: white;
}
body.invoice-detail .invoice .costs {
  text-align: center;
  width: 548px;
  margin-left: 593px;
  font-size: 1.275em;
}
body.invoice-detail .invoice .costs > div:before {
  content: " ";
  display: table;
}
body.invoice-detail .invoice .costs > div:after {
  content: " ";
  clear: both;
  display: table;
}
body.invoice-detail .invoice .costs .cell {
  float: left;
  height: 55px;
}
body.invoice-detail .invoice .costs .cell.i1 {
  width: 286px;
  border-bottom: 1px solid #979797;
  border-left: 1px solid #979797;
  font-family: IranSansWeb;
  font-weight: bold;
  font-weight: bold;
}
body.invoice-detail .invoice .costs .cell.i2 {
  width: 261px;
  border-left: 1px solid #979797;
  border-bottom: 1px solid #979797;
}
body.invoice-detail .invoice .costs .cell label {
  font-weight: bold;
}
body.invoice-detail .invoice .costs .total .cell.i2 {
  width: 130px;
}
body.invoice-detail .invoice .costs .total .cell.i3 {
  width: 131px;
  border: 1px solid #979797;
  border-top: none;
}
body.invoice-detail .invoice .costs .vat .cell.i1 {
  border-bottom: none;
}
body.invoice-detail .invoice .costs .vat .cell.i2 {
  border-bottom: none;
  border-right: 1px solid #979797;
}
body.invoice-detail .invoice .costs .payable {
  background: #cffdde;
}
body.invoice-detail .invoice .costs .payable .cell {
  color: #019875;
}
body.invoice-detail .invoice .costs .payable .cell.i1 {
  border: 1px solid #019828;
  border-right: none;
}
body.invoice-detail .invoice .costs .payable .cell.i2 {
  border: 1px solid #019828;
  font-family: IranSansWeb;
  font-weight: bold;
}
body.invoice-detail .invoice .costs-mobile {
  display: none;
}

@media (max-width: 1200px) {
  body.invoice-detail .inner-page-header .actions .invoice.print {
    display: none;
  }
  body.invoice-detail .invoice .headers {
    display: none;
  }
  body.invoice-detail .invoice .invoice-item {
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    margin-bottom: 10px;
    min-height: 100px;
    height: auto;
    border: none;
    font-size: 1em;
    overflow: hidden;
  }
  body.invoice-detail .invoice .invoice-item .cell-group {
    display: block;
    float: none;
    height: auto;
  }
  body.invoice-detail .invoice .invoice-item .cell-group .cell {
    border: none;
    width: auto;
    height: auto;
    display: block;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info {
    background: white;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .index {
    display: none;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .image {
    float: left;
    width: 100px;
    cursor: auto;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .image .overlay {
    display: none;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .title-and-specs {
    font-size: 1em;
    margin-top: 1em;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .actions {
    float: right;
    padding-right: 20px;
    display: block;
    margin: 15px 0 15px 0;
    text-align: center;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .actions > a {
    display: block;
    margin-bottom: 10px;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info {
    background: #fafafa;
    border-top: 1px solid #ededed;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell {
    display: inline-block;
    padding: 10px 0;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell .sub-title {
    display: block;
    font-family: IranSansWeb;
    font-weight: bold;
    font-size: 0.85em;
    color: #888;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.size {
    width: 10%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.price {
    width: 18%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.count {
    width: 14%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.count input {
    width: 70px;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.discounts {
    width: 14%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.total {
    width: 22%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.discounted-total {
    width: 22%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.delete {
    display: none;
  }
  body.invoice-detail .invoice .costs {
    display: none;
  }
  body.invoice-detail .invoice .costs-mobile {
    display: block;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 {
    border: 1px solid #888888;
    background: #dcdcdc;
    border-radius: 8px;
    padding: 8px;
    margin-top: 15px;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row {
    text-align: center;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row.i1 {
    color: #2b6bb4;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row.i1 .checkbox {
    display: inline-block;
    margin: 0 15px;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row.i1 .no-wrap .title {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row.i1 .no-wrap .title:before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: -5px;
    top: 3px;
    background: url("/Images/tax.png") no-repeat;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row.i1 .no-wrap .value {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0 15px;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row.i2 .total {
    display: inline-block;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row.i2 .total .title {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row.i2 .total .title:before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: -5px;
    top: 3px;
    background: url("/Images/discount.png") no-repeat;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row.i2 .total .value {
    display: inline-block;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0 15px;
    min-width: 125px;
  }
  body.invoice-detail .invoice .costs-mobile .group-row.i1 .row.i2 .total.discounted .title:before {
    background: url("/Images/factor.png") no-repeat;
  }
  body.invoice-detail .invoice .costs-mobile .payable {
    margin-top: 15px;
    text-align: center;
    font-size: 1.3em;
    color: #019875;
    font-weight: bold;
    border: 1px solid #019828;
    background: #cffdde;
    border-radius: 8px;
    padding: 8px;
  }
  body.invoice-detail .invoice .costs-mobile .payable .title {
    display: inline-block;
  }
  body.invoice-detail .invoice .costs-mobile .payable .value {
    display: inline-block;
    padding: 0 25px;
  }
}
@media (max-width: 550px) {
  body.invoice-detail h1 {
    text-align: center;
  }
  body.invoice-detail .links-wrapper {
    text-align: center;
  }
  body.invoice-detail .links-wrapper .btn {
    margin-left: 40px;
    margin-right: 40px;
    display: inline-block;
    margin-top: 8px;
  }
  body.invoice-detail .inner-page-header .actions {
    text-align: center;
  }
  body.invoice-detail .inner-page-header .actions .invoice {
    margin-left: 40px;
    margin-right: 40px;
    padding-right: 0;
    border-right: none;
  }
  body.invoice-detail .invoice .invoice-item {
    position: relative;
    padding-bottom: 60px;
    background: #fafafa;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .title-and-specs {
    float: none;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .actions {
    position: absolute;
    bottom: -3px;
    width: 100%;
    float: none;
    padding: 15px;
    margin: 0;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .actions .detail-page-w {
    width: 50%;
    float: right;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .actions .detail-page-w a.modal-link {
    font-size: 0.85em;
    margin-bottom: 0;
    line-height: 3.2em;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .actions .delete-w {
    width: 50%;
    float: left;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.general-info .actions .delete-w a.btn {
    font-size: 0.85em;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell {
    border-bottom: 1px dashed #ededed;
    height: 75px;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.size {
    width: 50%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.price {
    width: 50%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.count {
    width: 50%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.count input {
    width: 50%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.discounts {
    width: 50%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.total {
    width: 50%;
  }
  body.invoice-detail .invoice .invoice-item .cell-group.price-info .cell.discounted-total {
    width: 50%;
  }
}
@media (max-width: 411px) {
  body.invoice-detail .links-wrapper {
    text-align: center;
  }
  body.invoice-detail .links-wrapper .btn {
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    margin-top: 8px;
  }
  body.invoice-detail .inner-page-header .actions {
    text-align: center;
  }
  body.invoice-detail .inner-page-header .actions .invoice {
    margin-left: 10px;
    margin-right: 10px;
    padding-right: 0;
    border-right: none;
  }
}
/*ImagesUc*/
ul.images {
  margin: 0 0 20px 0;
  padding: 0;
}

li.image-wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*LLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL*/
/****LightGallery*/
body.lg-on .lg-outer {
  direction: rtl !important;
}

/*LinkList*/
.link-list .link-wrapper {
  padding: 10px 20px;
  background-color: white;
  margin-bottom: 10px;
}

.link-list .link-wrapper:hover {
  background-color: #F0F0F0;
}

.link-list .link-wrapper img {
  vertical-align: middle;
  margin-right: 30px;
  height: 50px;
}

.link-list a.link:link, a.link:visited, a.link:active {
  text-decoration: none;
  font-weight: bold;
}

.loading-indicator {
  height: 80px;
  width: 80px;
  background: url("/images/loading.gif");
  background-repeat: no-repeat;
  background-position: center center;
}

.loading-indicator-overlay {
  background-color: #FFFFFF;
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/*LoginBox*/
.login-box {
  display: inline-block;
  position: relative;
}

.login-box .title {
  line-height: 1.3em;
  float: right;
  text-align: center;
  border-radius: 3px 0 0 3px;
  font-size: 0.9em;
}

.login-box .login-form {
  width: 200px;
  padding: 15px;
}

.login-box .login-form .checkbox {
  margin-left: 10px;
  margin-bottom: 0;
}

.login-box .login-form .checkbox [type=checkbox] {
  margin: 10px 0 0 0;
  line-height: 1.5em;
}

.login-box .login-form label {
  line-height: 1.5em;
}

/*LoggedInBox*/
.loggedin-box {
  line-height: 2em;
  display: inline-block;
  position: relative;
  font-size: 0.9em;
}

.loggedin-box .title {
  line-height: 1.3em;
  float: right;
  text-align: center;
  border-radius: 3px 0 0 3px;
  font-size: 0.65em;
}

.loggedin-box .dropdown-menu {
  width: 200px;
  padding: 15px;
}

.loggedin-box .dropdown-menu li a {
  line-height: 1.5em;
  margin-bottom: 10px;
  text-align: center;
}

.loggedin-box .dropdown-menu .checkbox {
  margin-left: 10px;
}

.loggedin-box .dropdown-menu .checkbox [type=checkbox] {
  margin: 10px 0 0 0;
  line-height: 1.5em;
}

.loggedin-box .dropdown-menu label {
  line-height: 1.5em;
}

.loggedin-box i {
  line-height: 1.5em;
  margin-right: 5px;
}

/*MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM*/
/*Magnific Popup*/
.mfp-wrap {
  text-align: center;
}
.mfp-wrap .mfp-container {
  width: 70%;
  max-width: 720px;
  right: auto;
  left: auto;
  position: relative;
  display: inline;
}
.mfp-wrap .mfp-container .mfp-content {
  border-radius: 15px;
  background: white;
  overflow: hidden;
  background: white;
  position: relative;
}
.mfp-wrap .mfp-container .mfp-content .mfp-close {
  color: #444;
  font-size: 6em;
  text-align: right;
  padding: 10px;
  right: 0;
  left: auto;
  height: 80px;
  width: auto;
}
.mfp-wrap .mfp-container .mfp-content .mfp-close:after {
  content: "";
  background: url(/images/close.png) no-repeat center center;
  width: 31px;
  height: 31px;
  position: absolute;
  top: 24px;
  right: 19px;
  margin: 0;
  border: 0;
}
.mfp-wrap .mfp-container .mfp-content img.mfp-img {
  padding: 80px 0 0;
}
.mfp-wrap .mfp-container .mfp-content .mfp-figure:after {
  background: white;
  box-shadow: none;
}
.mfp-wrap .mfp-container .mfp-content figure {
  position: relative;
}
.mfp-wrap .mfp-container .mfp-content figure .mfp-bottom-bar {
  margin-top: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  cursor: auto;
}
.mfp-wrap .mfp-container .mfp-content figure .mfp-bottom-bar .mfp-counter {
  display: none;
}
.mfp-wrap .mfp-container .mfp-content figure .mfp-bottom-bar .mfp-title {
  position: absolute;
  top: 15px;
  left: 0;
  padding-left: 50px;
  padding-top: 15px;
  width: 100%;
  display: block;
  word-wrap: unset;
  text-align: left;
  font-size: 1em;
  color: #444;
}
.mfp-wrap .mfp-container .mfp-content figure .mfp-bottom-bar .mfp-title:after {
  content: "";
  width: 37px;
  height: 9px;
  background: #0e76bc;
  position: absolute;
  left: 0;
  top: 20px;
}
.mfp-wrap .mfp-container .mfp-arrow {
  background-color: white !important;
  border-radius: 30px;
  width: 60px;
  height: 60px;
  opacity: 0.8;
  box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s;
  margin-top: -30px;
}
.mfp-wrap .mfp-container .mfp-arrow:hover {
  opacity: 1;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right {
  left: -80px;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right:before {
  content: "";
  background: url("/images/right-arrow-pic.png") no-repeat center center;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  left: 15px;
  margin: 0;
  border: 0;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-right:after {
  display: none;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left {
  right: -80px;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left:after {
  content: "";
  background: url(/images/left-arrow-pic.png) no-repeat center center;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 14px;
  margin: 0;
  border: 0;
}
.mfp-wrap .mfp-container .mfp-arrow.mfp-arrow-left:before {
  display: none;
}

/*Menu*/
.menu .data-list {
  border-top: 1px dotted gray;
  margin-top: 20px;
}

.menu .sub-menu-item {
  padding: 10px;
}

.menu .RadEditor {
  padding: 0;
}

.menu .RadEditor .reModule {
  text-align: right;
  direction: rtl;
  height: auto !important;
}

.menu .RadEditor .reModule .reTextarea {
  text-align: right;
  direction: rtl;
  margin-right: 0.5%;
}

.menu .RadEditor .reContent {
  border: none !important;
  background-color: transparent !important;
}

/*.menu .RadEditor .reContentCell:hover{margin:-1px!important;border:1px dotted #ff0000!important;border:1px dotted rgba(255,0,0,.4)!important;background-color:transparent!important;}*/
.menu .reWrapper:not(.reFullScreen) {
  border: none !important;
  background-color: transparent !important;
  overflow: hidden;
}

.menu .reWrapper.reFullScreen {
  padding-top: 29px;
}

.menu .reWrapper .rrHandle {
  background: rgba(34, 146, 245, 0.76);
}

.menu .RadEditor .reModule.reRow {
  margin: 0;
}

.menu .RadEditor .reContentArea {
  padding: 0;
  direction: ltr;
}

.menu .RadEditor .reContentArea + .reTextArea {
  font-family: IranSansWeb;
}

.menu .RadEditor .reBottomProperties {
  direction: rtl;
}

.menu .RadEditor .reTextArea {
  direction: rtl;
  text-align: right;
  border: 1px solid;
  color: inherit;
}

.menu .RadEditor_MetroTouch {
  font-size: inherit;
  font-family: inherit;
}

.RadEditor.reToolbarWindow {
  padding-top: 6px;
}

.RadEditor .rwContent {
  direction: rtl;
}

.RadEditor .reDropdown {
  height: 1.86em;
  width: 7.7em;
}

.RadEditor .reDropdown.reRealFontSize {
  width: 4em;
}

.RadEditor .reDropdown.reZoom {
  width: 4.7em;
}

.RadEditor .reToolIcon:before {
  line-height: 1.65em;
}

.RadWindow .rwTitleBar .rwTitleWrapper {
  height: 2.2em;
}

.RadWindow .rwTitleWrapper .rwTitle {
  line-height: 2.1em;
}

/*.RadWindow .rwTitleWrapper .rwIcon { top: 0.5em; }*/
.RadWindow .reSave:before {
  content: "\e603";
}

.RadWindow .reCancel:before {
  content: "\e661";
}

.RadWindow .reJustify:before {
  content: "\e609";
}

.RadEditor .reRTL:before {
  content: "\e660";
}

.reDropDownBody {
  direction: rtl;
  box-sizing: content-box;
}

.reDropDownBody .reRTL:before {
  content: "\e660";
}

.reDropDownBody .reLTR:before {
  content: "\e659";
}

/*Mega Menu*/
#menu-img {
  float: right;
  padding: 15px;
  transition: 0.5s all;
  width: 15%;
}

.menu-bg {
  background: url(/images/MenuImages/menu-bg.png);
  height: 31px;
  padding-top: 5px;
}

.mega-menu a {
  text-decoration: none;
}

.mega-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1180px;
  margin: auto;
}

.mega-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu li.separator {
  height: 42px;
  width: 2px;
  margin: 0 4px;
  background: url(/images/MenuImages/separator.png) top left no-repeat;
}

.mega-menu li.level1 > a {
  height: 40px;
  width: 100px;
  padding: 4px;
  display: inline-block;
}

.mega-menu li.level1 > a.mm-item-link-hover {
  background: #f5f5f5;
}

.mega-menu li.level1 > a span.title {
  height: 40px;
  display: block;
  padding: 6px 0 0 12px;
  color: #3c3c3c;
}

.mega-menu li.level1 > a.mm-item-link-hover span.title {
  background: #f5f5f5;
  color: #001262;
}

.mega-menu ul.level2 {
  white-space: nowrap;
  padding: 7px;
  width: 85% !important;
  max-width: 1180px;
  overflow: auto;
}

.mega-menu li.level2 {
  float: left;
  padding: 10px 10% 10px 10px; /*border-left: 2px dotted gray;*/
  min-width: 140px;
  margin-bottom: 18px;
}

.mega-menu li.level2 > a {
  display: block;
  color: #181a1a;
  padding: 3px 8px 0 0;
  font-size: 1em;
  margin-bottom: 14px;
}

.mega-menu li.level2 li {
  padding: 4px 0;
  font-size: 0.9em;
  margin-top: 10px;
}

.mega-menu .level2-dropdown-menu {
  position: absolute;
  min-height: 250px;
  left: 0;
  width: 100%;
  top: 40px;
  right: 0;
  border-radius: 10px;
  box-shadow: 0 2px 3px #444;
  background: #f5f5f5; /* Old browsers */
  background: -moz-linear-gradient(top, #f5f5f5 0%, #ffffff 36%, #f5f5f5 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, right top, right bottom, color-stop(0%, #f5f5f5), color-stop(36%, #ffffff), color-stop(100%, #f5f5f5)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f5f5f5 0%, #ffffff 36%, #f5f5f5 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f5f5f5 0%, #ffffff 36%, #f5f5f5 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f5f5f5 0%, #ffffff 36%, #f5f5f5 100%); /* IE10+ */
  background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 36%, #f5f5f5 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f5f5f5", endColorstr="#f5f5f5",GradientType=0 ); /* IE6-9 */
}

.mega-menu li.clearfx {
  clear: both;
}

.mega-menu li.last-column {
  border: none;
}

.mega-menu .plus {
  padding-right: 8px;
}

.mega-menu a.mm-item-link-hover .plus {
  padding-right: 8px;
}

/*NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN*/
/*News*/
.news .news-info {
  padding: 10px 0;
  font-size: 0.8em;
}

.latest-news ul {
  list-style: none;
  padding: 0;
}

.latest-news ul li {
  padding: 5px 10px;
  border-bottom: 1px solid #e0e0e0;
}

.latest-news ul li .news-date {
  font-size: 0.8em;
}

.news .header a {
  margin: 0 5px;
}

.news .header .date-wrapper {
  float: left;
}

.news .header .icons {
  float: right;
  margin-right: 10px;
}

.news .news-gallery {
  float: left;
  width: 100%;
  margin: 0 0 5px 15px;
}

.news .image {
  float: left;
  margin: 0 15px 5px 0;
}

@media (max-width: 768px) {
  .news .image {
    width: 100%;
  }
}
.news .related-pictures {
  width: 100%;
  border-top: 1px dotted silver;
  padding-top: 10px;
  margin-top: 5px;
}

.news .related-pictures img {
  float: left;
  margin-left: 10px;
}

.news .footer {
  font-size: 0.7em;
  color: Gray;
  margin-top: 15px;
  vertical-align: middle;
}

.news .footer .news-tags {
  float: left;
}

.news .footer .news-info {
  float: right;
}

.news .footer .news-info .source-wrapper {
  float: right;
  margin-right: 10px;
}

.news .footer .news-info .view-count {
  float: right;
}

.news-container {
  margin-bottom: 15px;
}

/*NewsArchive*/
.news-archive .footer {
  text-align: right;
}

.DefNewsUserCtrl1 {
  direction: ltr;
  text-align: center;
}

.DefNewsUserCtrl2 {
  height: 60px;
  width: 50px;
  vertical-align: top;
  background-image: url("/images/NewsDate.png");
  background-repeat: no-repeat;
  background-position: top center;
  color: #fc4141;
  text-align: center;
  font-weight: bold;
  padding-top: 5px;
}

.DefNewsUserCtrl3 {
  width: 185px;
  margin-top: 5px;
  text-align: justify;
  vertical-align: top;
  text-align: left;
  direction: ltr;
}

.DefNewsUserCtrl4 {
  color: white;
  line-height: 18px;
  text-align: justify;
  width: 235px;
  height: 160px;
  margin-top: 5px;
}

a.newsLinkDef:link, a.newsLinkDef:active, a.newsLinkDef:visited {
  text-decoration: none;
  color: #cdcdcd;
  font-weight: bold;
}

a.newsLinkDef:hover {
  text-decoration: none;
  color: #095142;
  font-weight: bold;
  cursor: pointer;
}

/*NewsLetter*/
/*****Shared**********/
/********NewsLetter**********/
#newsletter {
  margin: 30px 0;
  position: relative;
  z-index: 1;
}
#newsletter .outer-bg {
  position: absolute;
  background-image: url("/Images/gray-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 400%;
  height: 100%;
  left: -150%;
  z-index: 1;
}
#newsletter .bg {
  background-color: #0e76bc;
  position: relative;
  background-image: url(/Images/newsletter-bg.png);
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  z-index: 2;
  margin: 40px 0;
}
#newsletter .bg .title {
  color: white;
  font-weight: bold;
  font-size: 1.3em;
}
#newsletter .bg .dscp {
  color: white;
  font-weight: 300;
}
#newsletter .bg .form-inline {
  margin-top: 10px;
}
#newsletter .bg .form-inline input {
  height: 40px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  margin-bottom: 5px;
  font-size: 1em;
  padding: 0 20px;
}

/*NewsList*/
.news-list .latest-news {
  margin-top: 15px;
}

.news-list .media {
  position: relative;
  border-top: 1px dotted silver;
  padding: 15px 0;
}

.news-list .media:first-child {
  border-top: none;
}

.news-list .media .image {
  float: left;
  margin: 0 15px 5px 0;
}

.news-list .summary {
  text-indent: 15px;
  padding: 0 5px 0 5px;
}

.news-list .footer {
  text-align: right;
}

.top-margin-10 {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .news-list .media .media-object, .news-list .media a {
    width: 100%;
  }
}
/*OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO*/
/*PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP*/
/*Pager*/
.pagination .prev, .pagination .next {
  border-bottom: none;
}
.pagination .prev a, .pagination .next a {
  width: 12px;
  height: 19px;
  padding: 17px 10px;
}
.pagination .next a {
  background: url(/Images/left-arrow.svg) center center no-repeat;
}
.pagination .prev a {
  background: url(/Images/right-arrow.svg) center center no-repeat;
}
.pagination li {
  display: inline-block;
  border-bottom: 2px solid #ededed;
  margin: 0 8px;
}
.pagination li a {
  color: #444444;
  border: none;
  font-size: 1.285em;
  line-height: 1.2em;
  border-radius: 0;
  background: transparent;
  padding: 5px 12px;
}
.pagination li a:hover, .pagination li a:focus {
  background: transparent;
}
.pagination li.active {
  border-bottom: 2px solid #0e76bc;
}
.pagination li.active a {
  background: none;
  color: #0e76bc;
  font-weight: bold;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
}
.pagination li.active a:hover {
  background: none;
  color: inherit;
}

/*PasswordRecovvery*/
.password-recovery .form .column.label {
  text-align: right;
  vertical-align: top;
  color: black;
}

/*PaymentGateways*/
.payment-gateways {
  margin-bottom: 30px;
}
.payment-gateways .item {
  border: 1px solid #ededed;
  border-radius: 10px;
  display: block;
  margin: 5px 0;
}
.payment-gateways .item.selected {
  border: 1px solid #66afe9;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.payment-gateways .item.selected:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 20px;
  top: 10px;
  background: url("/Images/package-check-mark.png") center center no-repeat;
  background-size: 100%;
}
.payment-gateways .item img {
  width: 100%;
}

/*PhotoList*/
.photo-list .header .title {
  float: left;
}

.photo-list .header .title h1 {
  display: inline;
  margin-right: 10px;
  font-size: 1.2em;
}

.photo-list .header em {
  font-size: 1.5em;
}

.photo-list .back-button {
  float: right;
}

.photo-list .item {
  margin: 10px 0;
  text-align: center;
  min-height: 400px;
  width: 100%;
}

.photo-list .item .item-title {
  padding: 5px;
}

.photo-list .item .link-wrapper {
  margin-top: 10px;
}

.photo-list .item .image-wrapper .item-img {
  width: 100%;
}

/*Poll*/
.poll-group-ctrl .title {
  font-weight: bold;
}

.poll-group-item-ctrl .title {
  font-size: 11px;
  font-weight: bold;
}

.poll-item-ctrl {
  padding: 5px;
}

.poll-item-ctrl .title {
  font-size: 1.1em;
}

.poll-ctrl .column.percent {
  width: 35px;
}

.poll-ctrl .column.vote-count {
  width: 20px;
}

.poll-ctrl .column.bar .bar-wrapper {
  position: relative;
  height: 1.5em;
  border: 1px dotted gray;
}

.poll-ctrl .column.bar .bar {
  background-color: orange;
  background-repeat: repeat-y;
  background-position: left top;
  height: 1.5em;
  float: left;
}

.poll-ctrl .column.bar .label {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 14px;
  padding-left: 5px;
}

.poll-ctrl .results {
  font-size: 1em;
  background-color: transparent;
}

.poll-ctrl .result-bars {
  width: 100%;
}

.poll-ctrl .poll-count {
  text-align: center;
}

.poll-ctrl .questions {
  font-size: 1em;
}

.poll-ctrl .questions input {
  vertical-align: middle;
}

.divPollResult {
  margin-top: 20px;
}

/*Profile*/
@page {
  margin: 0;
}
body {
  margin: 0;
}

.sheet {
  margin: 0;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  page-break-after: always;
}

/** Paper sizes **/
body.A3 .sheet {
  width: 297mm;
  height: 419mm;
}

body.A3.landscape .sheet {
  width: 420mm;
  height: 296mm;
}

body.A4 .sheet {
  width: 210mm;
  height: 296mm;
}

body.A4.landscape .sheet {
  width: 297mm;
  height: 209mm;
}

body.A5 .sheet {
  width: 148mm;
  height: 209mm;
}

body.A5.landscape .sheet {
  width: 210mm;
  height: 147mm;
}

body.letter .sheet {
  width: 216mm;
  height: 279mm;
}

body.letter.landscape .sheet {
  width: 280mm;
  height: 215mm;
}

body.legal .sheet {
  width: 216mm;
  height: 356mm;
}

body.legal.landscape .sheet {
  width: 357mm;
  height: 215mm;
}

/** Padding area **/
.sheet.padding-10mm {
  padding: 10mm;
}

.sheet.padding-15mm {
  padding: 15mm;
}

.sheet.padding-20mm {
  padding: 20mm;
}

.sheet.padding-25mm {
  padding: 25mm;
}

/** For screen preview **/
@media screen {
  body.print {
    background: #e0e0e0;
  }
  .sheet {
    background: white;
    box-shadow: 0 0.5mm 2mm rgba(0, 0, 0, 0.3);
    margin: 5mm auto;
  }
}
/** Fix for Chrome issue #273306 **/
@media print {
  body.A3.landscape {
    width: 420mm;
  }
  body.A3, body.A4.landscape {
    width: 297mm;
  }
  body.A4, body.A5.landscape {
    width: 210mm;
  }
  body.A5 {
    width: 148mm;
  }
  body.letter, body.legal {
    width: 216mm;
  }
  body.letter.landscape {
    width: 280mm;
  }
  body.legal.landscape {
    width: 357mm;
  }
  .sheet {
    margin: 0 !important;
  }
}
/*Profile*/
body.profile .control-label {
  font-size: 0.85em;
  font-weight: 500;
  color: #acacac;
}

/*Project*/
/*****Shared**********/
/********Project**********/
.project.list .items {
  position: relative;
  margin-top: 24px;
}
.project.list .items .view .item {
  color: #444;
  position: relative;
  box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: #ffffff;
  text-align: center;
  transition: all 0.3s;
  margin-bottom: 30px;
  overflow: hidden;
  margin: 0 8px 30px 8px;
  padding-bottom: 30px;
  height: 365px;
}
.project.list .items .view .item:hover {
  box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.2);
}
.project.list .items .view .item img {
  width: 100%;
}
.project.list .items .view .item .details {
  padding: 16px;
  text-align: left;
}
.project.list .items .view .item .details .title {
  font-size: 1.23em;
  font-family: IranSansWeb;
  font-weight: bold;
  color: #444;
}
.project.list .items .view .item .details .date {
  font-size: 0.71em;
  color: #888;
  position: relative;
  margin-left: 18px;
}
.project.list .items .view .item .details .date:before {
  content: "";
  background: url("../images/date.png") no-repeat center center;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -20px;
  top: -3px;
}
.project.list .items .view .item .details .summary {
  font-size: 0.85em;
  overflow: hidden;
}
.project.list .items .view .item .details .link {
  font-size: 1em;
  position: absolute;
  bottom: 16px;
  right: 35px;
}
.project.list .items .view .item .details .link:after {
  content: "";
  width: 10px;
  height: 18px;
  background: url("/images/into-arrow.png") no-repeat center center;
  position: absolute;
  right: -15px;
  top: 4px;
}
.project.detail .header .info {
  font-size: 0.71em;
  color: #888;
}
.project.detail .header .info .date {
  position: relative;
  margin-left: 18px;
  display: inline-block;
}
.project.detail .header .info .date:before {
  content: "";
  background: url("../images/date.png") no-repeat center center;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -20px;
  top: -3px;
}
.project.detail .header .info .menu-title {
  display: inline-block;
  margin-left: 24px;
}
.project.detail .header .back-btn {
  position: relative;
  margin-top: 34px;
}
.project.detail .header .back-btn:after {
  content: "";
  background-image: url("/Images/back.png");
  background-position: center center;
  background-repeat: no-repeat;
  width: 20px;
  height: 30px;
  position: absolute;
  right: 0;
  top: -1px;
}
.project.detail .header .back-btn a {
  color: #444;
  padding-right: 20px;
}
.project.detail .details {
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}
.project.detail .details .main-image {
  border-radius: 8px 8px 0 0;
  width: 100%;
}
.project.detail .details .dscp {
  padding: 24px;
}
.project.detail .details .footer {
  padding: 10px 0;
  border-top: 1px #ededed solid;
  margin: 0 24px;
}
.project.detail .details .footer .share-btn {
  position: relative;
  padding: 0 16px;
  height: 45px;
  cursor: pointer;
  transition: cubic-bezier(0.65, 1.03, 0.9, 1.02) 0.2s;
  border-radius: 22.5px;
  width: 120px;
  overflow: hidden;
}
.project.detail .details .footer .share-btn .title {
  display: inline-block;
  font-size: 0.85em;
  padding: 10px 0;
}
.project.detail .details .footer .share-btn .title .share-icon.hover {
  display: none;
}
.project.detail .details .footer .share-btn .icons {
  vertical-align: middle;
  display: block;
  left: 120px;
  top: 7px;
  opacity: 0;
  transition: all 1s;
  position: absolute;
}
.project.detail .details .footer .share-btn .icons .icon {
  color: white;
  display: table-cell;
  padding: 0 10px;
  font-size: 1.4em;
}
.project.detail .details .footer .share-btn:hover {
  background-color: #0e76bc;
  width: 362px;
}
.project.detail .details .footer .share-btn:hover .title {
  color: white;
  border-right: 1px dashed #fff;
  padding: 10px 10px 10px 0;
}
.project.detail .details .footer .share-btn:hover .title .share-icon {
  display: none;
}
.project.detail .details .footer .share-btn:hover .title .share-icon.hover {
  display: inline;
}
.project.detail .details .footer .share-btn:hover .icons {
  opacity: 1;
}
.project.detail .details .footer .tags {
  font-size: 0.85em;
  margin-top: 10px;
}

/*RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR*/
/*SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS*/
/*Search*/
/*********Search***************/
.search-page .search-box-wrapper {
  margin: 100px auto 0 auto;
  position: relative;
}
.search-page .search-box-wrapper .search-input {
  width: 821px;
  padding: 0;
  border: none;
  background-color: transparent;
  box-shadow: none;
  border-bottom: 2px solid #d8d8d8;
  border-radius: 0;
  font-size: 2.57em;
  font-weight: 300;
  line-height: 61px;
  height: auto;
}
.search-page .search-box-wrapper .search-icon {
  position: absolute;
  top: 10px;
  right: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0e76bc;
  padding: 5px;
  background-image: url("/Images/search-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 4px 5px 0 rgba(43, 107, 180, 0.45);
}
.search-page .search-box-wrapper .search-icon span {
  color: white;
  display: none;
}
.search-page .hint {
  font-size: 1.14em;
  color: #b3b3b3;
  font-family: IranSansWeb;
  font-weight: 500;
  float: none;
  display: block;
}
.search-page .results {
  margin-top: 125px;
  text-align: center;
}
.search-page .results .title {
  color: #0e76bc;
  font-size: 1.71em;
  font-family: IranSansWeb;
  font-weight: 300;
}
.search-page .results .sub-title {
  color: #b3b3b3;
  font-size: 1.28em;
  font-family: IranSansWeb;
  font-weight: bold;
}
.search-page .results .search-bg {
  width: 100%;
  margin-top: 60px;
}
.search-page .results .search-bg.small {
  display: none;
}
.search-page.popup {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  background: #f6f6f6;
  z-index: 10;
}
.search-page.popup .close-btn {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 31px;
  height: 31px;
  background: url("/Images/close.png") no-repeat;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .search-page .search-box-wrapper {
    float: none;
  }
  .search-page .search-box-wrapper .search-input {
    width: 100%;
    line-height: 42px;
    margin: 0 auto;
    font-size: 1.71em;
  }
  .search-page .search-box-wrapper .search-icon {
    text-align: center;
    position: relative;
    width: 190px;
    height: 40px;
    border-radius: 20px;
    background-position-x: 120px;
    margin: 50px auto 0 auto;
  }
  .search-page .search-box-wrapper .search-icon span {
    display: inline-block;
  }
}
@media (max-width: 590px) {
  .search-page .search-box-wrapper .search-input {
    font-size: 1.2em;
    font-weight: bold;
  }
  .search-page .search-box-wrapper .hint {
    font-size: 0.9em;
  }
  .search-page .search-box-wrapper .search-icon {
    margin-top: 30px;
  }
  .search-page .results {
    margin-top: 70px;
  }
  .search-page .results .search-bg.big {
    display: none;
  }
  .search-page .results .search-bg.small {
    display: block;
  }
  .search-page.popup .close-btn {
    right: 20px;
    top: 20px;
  }
}
@media (max-width: 411px) {
  .search-page .search-box-wrapper .search-input {
    font-size: 0.95em;
  }
  .search-page .search-box-wrapper .search-icon {
    width: 150px;
    margin-top: 15px;
  }
  .search-page .results {
    font-size: 0.7em;
  }
}
.search-result .stuff-wrapper {
  width: 100% !important;
}
.search-result .stuff-wrapper .stuff {
  position: relative;
  border-radius: 25px;
  margin: 0 4px 16px 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1);
  padding: 1px 0;
}
.search-result .stuff-wrapper .stuff .box {
  padding: 16px;
  position: relative;
  z-index: 2;
  border-radius: 25px;
  margin-bottom: 1px;
  background-color: #f8f8f8;
  background-image: url("/Images/box-bottom-bg.jpg");
  background-repeat: repeat-x;
  background-position: bottom center;
}
.search-result .stuff-wrapper .stuff .box .rate {
  padding: 5px 0;
}
.search-result .stuff-wrapper .stuff .header {
  border-bottom: 1px dotted #b0b0b0;
  z-index: 3;
  position: relative;
}
.search-result .stuff-wrapper .stuff .image-link {
  position: relative;
  margin: 18px 0;
  z-index: 2;
  background: #f2f2f2;
  display: inline-block;
  width: 13%;
  float: left;
  margin-right: 30px;
}
.search-result .stuff-wrapper .stuff .image-link img {
  width: 100%;
  transition: 0.3s all cubic-bezier(0.17, 0.71, 0.63, 0.93);
}
.search-result .stuff-wrapper .stuff .details {
  display: inline-block;
  position: relative;
  top: 0;
  width: 70%;
  text-align: left;
}
.search-result .stuff-wrapper .stuff .details .title-wrapper {
  height: 55px;
  margin-top: 20px;
}
.search-result .stuff-wrapper .stuff .details .title-wrapper .title {
  font-size: 1.2em;
  font-weight: bold;
  color: black;
  display: inline-block;
}
.search-result .stuff-wrapper .stuff .details .price-box {
  margin: 15px -15px 0;
  display: none;
}
.search-result .stuff-wrapper .stuff .details .price-box > div {
  display: inline-block;
}
.search-result .stuff-wrapper .stuff .details .price-box .icon-tag {
  font-size: 1.7em;
  color: #9f9fa0;
  vertical-align: middle;
}
.search-result .stuff-wrapper .stuff .details .price-box b {
  font-size: 1.1em;
}
.search-result .stuff-wrapper .stuff .sign {
  left: -15px;
  top: -18px;
  z-index: 70;
}
.search-result .stuff-wrapper .stuff .bottom-border {
  z-index: 1;
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 100%;
  background: url("/images/gold-bg-1.png") repeat-x;
  height: 12px;
}
.search-result .stuff-wrapper .stuff .top-border {
  z-index: 1;
  position: absolute;
  top: -1px;
  right: 0;
  width: 100%;
  background: url("/images/gold-bg-1.png") repeat-x;
  height: 12px;
}
.search-result .stuff-wrapper .stuff .hover {
  border-radius: 25px;
  position: absolute;
  top: 50px;
  left: 0;
  bottom: 0;
  right: 0;
  background: #f8f8f8;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  transition: all 0.2s cubic-bezier(0, 0, 0, 1);
}
.search-result .stuff-wrapper .stuff .btns {
  position: absolute;
  display: block;
  bottom: 25px;
  right: 0;
  left: 0;
  z-index: 3;
  text-align: left;
  padding-left: 15%;
}
.search-result .stuff-wrapper .stuff .btns .btn i {
  margin-right: 5px;
}
.search-result .stuff-wrapper .stuff:hover {
  box-shadow: 0 17px 33px 7px rgba(66, 66, 66, 0.66); /*.hover { visibility: visible; opacity: 1; }*/
  /*.image-link { img { transform: scale(1.25) translateY(20px); } }*/
}
.search-result .stuff-wrapper .stuff:hover .btns {
  display: block;
}

.autocomplete-w1 {
  position: relative;
  top: 3px;
  padding: 0 6px 6px 0;
  display: none; /* IE6 fix: */
  _background: none;
  _margin: 1px 0 0 0;
}

.autocomplete {
  border: 1px solid #d1d1d1;
  background: #fff;
  color: #6a6a6a;
  cursor: default;
  text-align: left;
  max-height: 350px;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative; /* IE6 specific: */
  _height: 350px;
  _margin: 0;
  _overflow-x: hidden;
}

.autocomplete .selected {
  background: #dddddd;
}

.autocomplete .item {
  padding: 5px 5px;
  white-space: nowrap;
  line-height: 2em; /*overflow: hidden;*/
  border-bottom: 1px solid whitesmoke;
}

.autocomplete .title {
  white-space: nowrap;
  line-height: 2em; /*overflow: hidden;*/
}

.autocomplete .type {
  padding: 2px 5px;
  white-space: nowrap;
  float: left;
  line-height: 2em; /*overflow: hidden;*/
}

.autocomplete .summary {
  white-space: normal;
  text-align: justify;
  line-height: 1.3em;
}

.autocomplete img {
  float: left;
  margin-right: 5px;
}

.autocomplete strong {
  font-weight: normal;
  color: #3399FF;
}

.autocomplete-search-input {
  width: 245px;
  background-color: #ededed;
  border: 1px solid #606060;
  color: #6a6a6a;
  padding: 3px;
}

span.hilite {
  background-color: yellow;
}

/*SearchTemplate*/
.search-template #advanced-search {
  display: none;
}

.search-template #advanced-search .manufactures {
  margin-right: 5px;
  float: left;
}

.search-template #advanced-search #minPrice {
  text-align: right;
}

.search-template #advanced-search .price {
  margin-right: 10px;
  margin-left: 10px;
}

.search-template .btn .caret {
  margin-left: 5px;
}

.search-template ul {
  list-style: none;
  margin: 0;
}

.search-template li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-template .status {
  overflow: auto;
}

.search-template .status li {
  float: left;
}

.search-template #advanced-search .selected-items { /* margin-bottom: 20px; */ }

.search-template #advanced-search .selected-items .label {
  margin-right: 5px;
  display: inline-block;
  padding: 8px;
}

.search-template #advanced-search .search-item {
  display: inline-block;
  margin: 0 5px 5px 0;
  vertical-align: top;
}

.search-template #advanced-search .btn {
  font-size: 0.7em !important;
}

.search-template #advanced-search .selected-items span.remove {
  margin-left: 10px;
  cursor: pointer;
}

.search-template #results {
  margin-top: 10px;
}

.search-template #results .compare {
  right: 10px;
  position: absolute;
  text-align: right;
  top: 10px;
  width: 63px;
  height: 21px;
  background: url(/images/compare-fa.png) no-repeat top right;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}

.search-template #results .compare > input {
  margin: 4px;
}

.search-template #results.expanded {
  margin-top: 0;
}

.search-template .display {
  margin-top: 15px;
}

.search-template .display .button {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/images/display-type.png) no-repeat;
  float: right;
}

.search-template .display .button.grid {
  background-position: 100% 0;
}

.search-template .display .button.grid:hover, .search-template .display .button.grid.selected {
  background-position: 100% -24px;
}

.search-template .display .button.list {
  background-position: -24px -24px;
}

.search-template .display .button.list:hover, .search-template .display .button.list.selected {
  background-position: -24px 0;
}

.search-template .searched-items {
  padding: 0;
}

.search-template .searched-items > li {
  padding: 10px;
}

.search-template .searched-items .item {
  position: relative;
  text-align: center;
  margin: 15px;
  height: 320px;
}

.search-template .searched-items .item .compare {
  display: none;
}

.search-template .searched-items .item:hover {
  box-shadow: -1px 2px 20px rgba(0, 0, 0, 0.3);
}

.search-template .searched-items .item:hover .compare {
  display: block;
}

/*.search-template .searched-items .item .title-english a { color: #808080; }*/
.search-template .searched-items .item .image-wrapper img {
  width: 100%;
  border-radius: 10px;
  padding: 10px;
}

.search-template .searched-items .item .specification {
  overflow: hidden;
  transition: 0.3s all;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  padding: 10px;
  margin: 0;
  display: block; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */ /* W3C */ /* IE6-9 */
  background: rgba(0, 0, 0, 0.8);
}

.search-template .searched-items .item .specification a {
  color: white;
}

.search-template .searched-items .item .specification .product-name {
  font-size: 1em;
  font-weight: bold;
  margin: 5px 0 10px;
}

.search-template .searched-items .item .specification .product-name-en {
  font-size: 0.8em;
  margin: 0 0 10px;
}

.search-template .searched-items .item .specification .product-status {
  color: white;
}

.search-template .searched-items .item .specification .product-summary {
  text-align: left;
  margin: 10px 0;
  display: none;
}

.search-template .searched-items .item .specification .product-summary span {
  color: white !important;
}

.search-template .searched-items .item:hover .specification .product-model {
  font-size: 1em; /* color: rgba(20, 20, 20, 1); */
  display: none;
  margin-bottom: 5px;
}

.search-template .searched-items .item .specification .product-status .label {
  margin-top: 5px;
  font-size: 0.7em;
}

.search-template .searched-items .item:hover .specification {
  height: 80%;
  padding: 5px 10px;
  margin: 0;
  background: rgba(0, 0, 0, 0.8); /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */ /* W3C */ /* IE6-9 */
}

.search-template #results.expanded .searched-items [class*=col-] {
  width: 100%;
}

.search-template #results.expanded .searched-items .item {
  height: auto;
  width: 100%; /* min-height: 250px; */
  padding-left: 10px;
}

.search-template #results.expanded .searched-items .item .image-wrapper {
  width: 20%;
  float: left;
}

.search-template #results.expanded .searched-items .item .image-wrapper img {
  width: 100%;
  border-radius: 10px 0 0 10px;
}

.search-template #results.expanded .searched-items .item .compare {
  display: block;
}

.search-template #results.expanded .searched-items .item .specification .product-status {
  color: #444;
}

.search-template #results.expanded .searched-items .item:hover .specification {
  background: none;
}

.search-template #results.expanded .searched-items .item .title {
  font-weight: bold;
}

.search-template #results.expanded .searched-items .item .title-english {
  color: #808080;
  direction: rtl;
  font-size: 1em;
  text-align: left;
}

.search-template #results.expanded .searched-items .item .options {
  text-align: center;
  padding: 10px;
  float: left;
}

.search-template #results.expanded .searched-items .item .specification {
  padding: 15px;
  float: left;
  text-align: left;
  background: none;
  height: 100%;
  position: relative;
}

.search-template #results.expanded .searched-items .item .specification a {
  color: #444;
}

.search-template #results.expanded .searched-items .item .main-specifications {
  font-size: 8pt;
  padding: 7px 2px 2px 3px;
  display: block;
}

.search-template #compare-list a.compare-item {
  float: left;
  margin: 0 10px 15px;
  padding: 6px;
  text-align: center;
  width: 120px;
  height: 125px;
  position: relative;
  cursor: auto;
}

.search-template #compare-list a.compare-item:hover {
  border: 1px solid #606060;
}

.search-template #compare-list a.compare-item span.title {
  display: block;
  cursor: pointer;
}

.search-template #compare-list a.compare-item img {
  cursor: pointer;
}

.search-template #compare-list a.compare-item span.remove {
  display: block;
  height: 16px;
  right: 4px;
  position: absolute;
  top: 5px;
  width: 16px;
  background: url(/images/compare/close_delete.png) no-repeat;
  cursor: pointer;
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.search-template #compare-list a.compare-item:hover span.remove {
  opacity: 1;
  filter: alpha(opacity=100);
}

.search-template .simple-search .model {
  margin-right: 10px;
}

.search-template .simple-search input[type=checkbox] {
  float: left;
}

.search-template .simple-search .input-group {
  width: 100%;
}

.search-template .simple-search .checkbox label {
  margin-left: 17px;
}

@media (max-width: 768px) {
  .search-template #results.expanded .searched-items .item .image-wrapper img {
    height: 100%;
    border-radius: 10px;
  }
}
/*Stuff*/
/*****Shared**********/
/*.stuff {
    .page-row { margin: 0; display: table; table-layout: fixed; width: 100%;
        .col-category { width: 320px; display: none*/ /*table-cell*/ /*; height: 100%; vertical-align: top; padding-bottom: 70px;
    .category-container { min-height: 600px; display: block; background-image: url(/Images/categories-bg-after.png), url(/Images/category-menu-bg.png); background-repeat: no-repeat,no-repeat; background-position: bottom center, top center; background-size: 102%; padding: 60px 50px 50px 50px; position: relative; margin-top: -10px;
        > .title { font-size: 1em; color: black; margin-top: 45px;
            &:first-child { margin-top: 0; }
        }
        .title-border { background: url('/Images/category-container-title.png') no-repeat center center; height: 20px; width: 100%; }
        .categories {
            > a { color: white; text-shadow: 0 1px 1px $secondary; }
            ul { list-style: none; padding: 0;
                li { padding-left: 15px; font-size: 0.93em;
                    &.selected > a { color: white; }
                    a { text-decoration: none; color: black; }
                }
            }
        }
        .brands { font-size: 0.9em; color: black; }
    }
}
.col-list { display: table-cell;*/ /*padding-right: 20px;*/ /*}
    }
    .section-splitter { background: url('/images/section-splitter.png') repeat-x; padding-top: 45px; }

    .section-title {
        h2 { margin: 21px; color: white; text-shadow: -1px 1px 2px rgba(0, 0, 0, 0.43); }
        @include clearfix();
        margin: 15px 0 50px;
        height: 107px;
        text-align: center;
        background: url('/images/header-bg.png') no-repeat center center;
    }

    .stuffs-header { height: 67px; background-color: #ededed; border-top: 1px solid #979797; border-right: 1px solid #979797; font-size: 0.857em; font-family: IranSansWeb; font-weight: bold;
        .cell { text-align: center; border-left: 1px solid #979797; float: left; height: 100%;
            &:before { content: ''; display: inline-block; height: 100%; vertical-align: middle; margin-left: -0.25em; }
            .content { display: inline-block; vertical-align: middle; }
        }
        .image { width: 90px; padding: 8px 3px; }
        .title-and-specs { padding: 0 15px; width: 260px; }
        .size { width: 150px; }
        .price { width: 113px; }
        .count { width: 99px; text-align: center; padding: 0 9px;
            input { width: 100%; text-align: center; border: 1px solid #888888; border-radius: 8px;
                &:focus { outline: none; border-color: lighten($primary,5); box-shadow: 0 0 5px $primary; }
            }
        }
        .discount { width: 123px; }
        .total { width: 152px; }
        .discounted-total { width: 152px; }
        .btns { width: 175px; }
    }
    .stuffs { border-bottom: 1px solid #979797;
        .stuff { width: 100%; height: 100px; border-top: 1px solid #979797; border-right: 1px solid #979797; transition: all 0.1s ease-in-out;
            &:hover { background: #f5faff; }
            &.in-cart { background: #f5faff; }
            .cell-group { float: left; height: 100%;
                &.price-info { font-size: 1.285em; }
                .cell { text-align: center; border-left: 1px solid #979797; height: 100%; float: left;
                    .sub-title { display: none; }
                }
                .image { width: 90px; padding: 8px; vertical-align: middle; height: 100%; position: relative;
                    .image-wrapper { position: relative;
                        > img { width: 100%; }
                        .overlay { content: ''; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); position: absolute; opacity: 0; transition: all 0.3s; vertical-align: middle; top: 0; left: 0; display: inline-block; cursor: pointer;
                            img { margin-top: 25px; }
                        }
                    }
                    &:hover {
                        .overlay { opacity: 1; }
                    }
                }
                .title-and-specs { width: 260px; text-align: left; padding: 0 15px;
                    .title { font-size: 0.928em; font-weight: bold; }
                    .specs { font-size: 0.857em; color: #888; font-family: IranSansWeb;
                        span { padding: 0 5px; border-right: 1px solid #888;
                            &:first-child { padding-left: 0; }
                            &:last-child { border-right: none; }
                        }
                    }
                }
                .size { width: 150px;
                    .value {
                        .text-value { display: inline-block; direction: rtl; }
                        .sizes { display: none; }
                    }
                }
                .actions { display: none; }
                .price { width: 113px; }
                .count { width: 99px; text-align: center; padding: 0 9px;
                    input { font-size: 0.9em; width: 100%; text-align: center; border: 1px solid #888888; border-radius: 8px; direction: rtl;
                        &:focus { outline: none; border-color: lighten($primary,5); box-shadow: 0 0 5px $primary; }
                    }
                }
                .discounts { width: 123px;
                    .discount { padding: 0; font-size: 85%;
                        &.selected { font-weight: bold; color: #2b6bb4; text-decoration: underline; padding: 5px; }
                    }
                }
                .total { width: 152px; }
                .discounted-total { width: 152px; }
                .btns { width: 175px; }
            }
        }
    }
    .pagination { margin: 10px 0;
        .dscp { font-size: 0.85em; font-family: IranSansWeb; font-weight: 500; }
    }
}*/
/**********Categories*********/
/*.stuff.category {
    .main-content-wrapper {
        .content {
            .menu { margin-top: 24px;
                > .title { font-family: IranSansWeb; font-weight: bold; margin-bottom: 16px; margin-top: 25px; }
                .list { }
            }
        }
        .category { box-shadow: 0 10px 12px 0 rgba(0, 0, 0, 0.2); border-radius: 8px; background-color: #ffffff; text-align: center; transition: all 0.3s; margin-bottom: 30px; overflow: hidden;
            .image-wrapper { display: block;
                a { vertical-align: middle; width: 100%; height: 100%;
                    img.main-image { width: 100%; }
                }
            }
            .title { display: block; color: $secondary; font-size: 1em; white-space: nowrap; padding: 16px 0; }
            &:hover { }
        }
    }
}*/
/************************/
/*.stuff.list {
    .dropdown .icon.icon-caret { margin-left: 5px; color: #988b87; }

    .content-filter { float: left; position: relative; margin-bottom: 16px;
        .input { border: none; width: 260px; border-bottom: 2px solid gray; font-size: 0.85em; padding-left: 30px; position: relative; z-index: 1; }
        &:before { content: ''; width: 20px; height: 20px; position: absolute; left: 5px; top: 5px; background: url('/Images/filter.svg') no-repeat; z-index: 2; }
    }
    .invoice-summary { clear: both; float: right; font-weight: bold;
        .discounted-total { display: inline-block; padding-left: 35px; padding-left: 35px; position: relative;
            &:before { content: ''; width: 30px; height: 30px; position: absolute; left: -5px; top: 3px; background: url('/Images/discount.svg') no-repeat; }
        }
        .total { display: inline-block; position: relative; margin-right: 20px; padding-right: 20px; padding-left: 35px; border-right: 1px solid #ededed;
            &:before { content: ''; width: 30px; height: 30px; position: absolute; left: -5px; top: 3px; background: url('/Images/factor.svg') no-repeat; }
        }
        &.scroll-to-fixed-fixed { background: #019875; color: white; width: 234px; font-size: 0.8em; padding: 12px 5px;
            .discounted-total { margin-top: 10px;
                &:before { background: url('/Images/discount-white.png') no-repeat; }
            }
            .total { margin-right: 0; padding-right: 0; border-right: none;
                &:before { background: url('/Images/factor-white.png') no-repeat; }
            }
            &:after { content: ' '; display: block; position: absolute; width: 100%; height: 10px; background: url('/images/toothpick-1.png'); bottom: -10px; right: 0; }
        }
    }
    .guide { clear: both; float: right; color: #888888; font-size: 0.85em; margin-top: 10px; }
    .products { clear: both; }
    .filters-buttons { display: none;
        #show-filters-btn { display: block }
    }
    .specification-filters-wrapper { clear: both; margin-top: 30px; border-bottom: 1px solid #ededed; padding-bottom: 10px; margin-bottom: 30px;
        #hide-filters-btn { display: none; }
        .filter-column {
            .btn { border-radius: 10px;
                &:after { content: ''; width: 10px; height: 10px; position: absolute; right: 5px; top: 18px; background-image: url(/images/arrow.png); background-repeat: no-repeat; }
            }
            &.right { border-left: 1px solid #ededed; }
            &.center { border-left: 1px solid #ededed; border-right: 1px solid #ededed; }
            &.left { border-right: 1px solid #ededed; }
        }
        .title { font-family: IranSansWeb; font-weight: 500; margin-bottom: 10px; font-size: 1.2em; position: relative; padding-left: 25px;
            &:before { content: ''; width: 20px; height: 30px; position: absolute; left: 0; top: 0; background-position: center center; background-repeat: no-repeat; }
            &.filters {
                &:before { background-image: url('/Images/spec-filter.png'); }
            }
            &.price {
                &:before { background-image: url('/Images/price-filter.png'); }
            }
            &.selected-filters {
                &:before { background-image: url('/Images/selected-filters.png'); }
            }
        }
        .applied-filters { padding: 8px 0;
            .label { display: inline-block; font-size: 0.9em; padding: 8px; vertical-align: middle; margin-right: 5px; margin-bottom: 5px; color: black; background-color: #c5982f; background: #fefefe; border: 1px solid #e9e9e9; border-radius: 8px;
                .remove { font-size: 1.7em; line-height: 0.6em; vertical-align: middle; display: inline-block; margin: 4px 0 0 6px; cursor: pointer; color: #e9e9e9; }
            }
            .color-sample { display: inline-block; width: 15px; height: 15px; vertical-align: middle; border: 1px solid rgba(0, 0, 0, 0.3); }
        }
        .specification-filters { margin-bottom: 20px;
            .spec-filter { float: left; margin: 0 5px 5px 0;
                .dropdown-menu.sizes .checkbox label span { display: inline-block; direction: rtl; }
            }
        }
    }
    .color-group {
        .color {
            .sample { width: 24px; height: 24px; border: 1px solid #d2d2d2; display: inline-block; vertical-align: middle; }
        }
    }

    .special-filters { float: left;
        .fast-shipping { display: inline-block; color: darken(yellow,15);
            .icon {
                @include icons-fast-shipping-filter;
            }
        }
        .special-offer { display: inline-block; color: #e20000;
            .icon {
                @include icons-spesial-offer-filter;
            }
        }
    }
    .display-priority { float: right; background: white; padding: 0 10px; border-radius: 8px; margin: 10px 0;
        > .title { font-size: 0.9em; color: darken($gold,10); }
        .button { display: inline-block; padding: 0 10px; font-size: 0.9em; cursor: pointer; height: 3em; line-height: 3em; }
        .button.selected { font-weight: bold; color: darken($gold,20); position: relative;
            &:after { content: " "; display: block; position: absolute; width: 100%; height: 6px; top: -6px; right: 0; background-color: $gold; }
        }
    }
    .display-type { float: right; margin: 9px 0 0 10px;
        .btn { opacity: 0.6; }
        .btn.selected { box-shadow: -4px 4px 1px #908d84; opacity: 1; }
    }
    .price-filter {
        margin: 0 15px;
        @include clearfix();
        .from { float: right; background-color: #ededed; border-radius: 10px; padding: 5px 10px; margin-top: 10px; margin-right: 5px; }
        .to { float: left; background-color: #ededed; border-radius: 10px; padding: 5px 10px; margin-top: 10px; margin-left: 5px; }
        .value { }
        .unit { font-size: 0.8em; }
        .price-slider-bg { padding: 0 20px; background: url(/Images/slider-bg.png) center center repeat;
            .price-slider {
                $arrowDistance: 4;

                @keyframes slider-left-arrow {
                    100% { right: -$arrowDistance * 1px; }
                }

                @keyframes slider-right-arrow {
                    100% { left: -$arrowDistance * 1px; }
                }

                height: 13px;
                border: none;
                .ui-slider-handle { width: 43px; height: 25px; position: relative; background: url('/images/slider-anchor-bullet.png') center center no-repeat; cursor: pointer;
                    .arrow { position: absolute; top: 0; width: 12px; height: 25px; background-position: center center; background-repeat: no-repeat;
                        &.right { left: 0; background-image: url('/images/slider-anchor-right-arrow.png'); }
                        &.left { right: 0; background-image: url('/images/slider-anchor-left-arrow.png'); }
                    }
                    &:hover {
                        .arrow {
                            &.right { animation: slider-right-arrow 0.3s ease-in-out infinite alternate; }
                            &.left { animation: slider-left-arrow 0.3s ease-in-out infinite alternate; }
                        }
                    }
                }
            }
        }
    }
}*/
/****************************************/
/*.stuff.details {
    .content { background: #f2ecdc; padding-bottom: 35px;
        .breadcrumb-wrapper {
            .sitemap { margin-left: 25px; }
        }
    }
    .product-information {
        .media-gallery { display: table; width: 100%;
            .column.right { display: table-cell; width: 150px; padding: 0 3px; vertical-align: top; position: relative;
                .thumbnails { position: absolute; height: 100%; width: 142px; padding-bottom: 77px;
                    #stuff-thumbnails { height: 100%; overflow-y: auto; padding-top: 2px;
                        .image-thumbnail { width: 95px; display: block; box-sizing: content-box; border-radius: 5px; margin: auto; overflow: hidden; text-align: center; margin-top: 2px; margin-bottom: 12px;
                            &:hover, &.selected { padding: 2px; box-shadow: -3px 3px 1px #99958b; margin-top: -2px; margin-bottom: 10px; }
                            img { border-radius: 5px; }
                        }
                    }
                    .social-networks { position: absolute; bottom: 0; width: 100%; text-align: center;
                        .title { border-bottom: 1px solid white; font-size: 0.8em; margin-bottom: 5px; text-align: center; display: inline-block; }
                        .diamond-btn {
                            text-align: center;
                            padding: 2px 0;
                            color: #60d3db;
                            text-decoration: none;
                            @include icons-bullet-black;
                            i { color: #60d3db; font-size: 0.9em; }
                        }
                    }
                }
            }
            .column.left { display: table-cell;
                .preview { padding: 2px; border-radius: 8px; position: relative;
                    .product-image { width: 100%; border-radius: 8px; }
                    .brand-logo { position: absolute; top: 20px; left: 18px; }
                    .sign { position: absolute; top: 5px; right: 10px; }
                }
            }
        }
        .in-page-links { margin-top: 20px; display: table; width: 100%;
            .col-1 { display: table-cell; width: 150px; }
            .col-2 { display: table-cell;
                .full-specs-btn { width: 48%; float: left; margin-right: 4%;
                    &.full { width: 100%; margin: 0 }
                }
                .product-in-package-btn { width: 48%; float: left;
                    &.full { width: 100%; margin: 0 }
                }
            }
        }
        header {
            .i-1 {
                & > * { display: inline-block; }
                h1 { font-size: 1.4em; margin-top: 0; margin-right: 10px; }
                .brand { vertical-align: text-bottom; font-size: 1em; }
                .likes { vertical-align: text-bottom; margin-left: 15px; line-height: 1.9em;
                    .action-btn { display: inline-block; text-decoration: none; cursor: pointer;
                        i { color: #ccbca1; font-size: 1.4em;
                            &.icon-heart-o { display: block; }
                            &.icon-heart { display: none; }
                        }
                        &.liked {
                            .icon-heart-o { display: none; }
                            .icon-heart { display: block; }
                        }
                    }
                    span { display: inline-block; font-size: 1.2em; }
                }
            }
            .i-2 {
                & > * { display: inline-block; }
                .rate {
                    .br-wrapper {
                        @include valign-middle();
                    }
                }
                span { font-size: 1.1em; }
            }
        }
        .buy-information {
            .colors {
                .color.btn { width: 45px; margin-right: 10px; opacity: 0.4;
                    &.selected { opacity: 1; box-shadow: -4px 4px 1px #908d84; margin-bottom: 9px; }
                }
            }

            .warranties { margin-top: 5px;
                label { width: 50px; text-align: right; }
                select { width: 160px; }
            }
            .count { margin-top: 5px;
                label { width: 50px; text-align: right; }
                select { width: 160px; }
            }
            .assembly { margin-top: 5px;
                .radio-inline { vertical-align: top; padding-left: 0; }
                .sub-label { color: #9a7901; display: block; text-align: center; font-weight: normal; font-size: 0.9em;
                    .value { font-weight: bold; font-size: 1.2em; direction: rtl; display: inline-block; }
                }
            }
            .slogans { border-top: 1px solid white; border-bottom: 1px solid white; margin: 20px 0;
                .slogan { display: inline-block; padding: 0 8px;
                    i { color: #60d3db; font-size: 28px; margin-right: 10px; }
                    span { font-size: 0.8em; }
                }
            }
            .price-information {
                .price {
                    .value {
                        &.discounted { text-decoration: line-through; }
                    }
                }
                .discount { color: black; font-weight: bold; }
                .add-to-cart { margin-top: 20px;
                    .discounted-price { color: #50b300; font-size: 1.3em; text-shadow: -1px 1px 2px white;
                        .value { font-size: 1.8em; font-weight: bold; }
                    }
                    .btn { margin-top: 17px; }
                }
            }
        }
    }
    .assurance { text-align: center;
        .rail { height: 14px; background: url('/images/assurance-rail-bg.png'); margin-top: 27px; }
        .item { display: inline-block; width: 320px; padding: 0 15px; margin-top: -17px; color: black;
            .icon-bg {
                @include icons-assurance-item-bg;
            }
            .title { font-weight: bold; font-size: 1.1em; margin-top: 8px; text-align: center;
                .text { display: inline-block; border-bottom: 3px solid lighten(desaturate($gold,25),20); padding-bottom: 10px; margin-bottom: 10px; }
            }
            .description { font-size: 0.9em; }
            &.delivery {
                .icon {
                    @include icons-assurance-delivery;
                    margin-top: 78px;
                }
            }
            &.return {
                .icon {
                    @include icons-assurance-return;
                    margin-top: 71px;
                }
            }
        }
    }
    .specifications {
        .specifications-table { border-radius: 6px; overflow: hidden; transition: all 0.3s ease-in-out;
            &.auto-height { box-sizing: content-box; }
            &.empty { background: none; border: none; }

            .specification {
                @include clearfix();
                font-size: 0.85em;
                background: white;
                margin: 3px 3px;
                padding: 2px;
                .title { float: left; width: 150px; text-align: right; }
                .value { float: left; width: 100px; text-align: left; margin-left: 30px; }
                &:first-child { border-radius: 6px 6px 0 0; }
                &:last-child { border-radius: 0 0 6px 6px; }
            }
        }
    }
    .compare-specifications { text-align: center;
        .toggle-all-specifications { margin-top: 5px; }
        .products { min-width: 960px; width: 100%;
            .product-wrapper { vertical-align: bottom; min-width: 340px;
                .product {
                    .information { position: relative; padding: 20px 20px 45px 20px; z-index: 1;
                        .corners { position: absolute; width: 100%; height: 100%; top: 0; right: 0; z-index: -1;
                            & > div { background: url('/images/product-bg-in-compare.png') no-repeat; width: 50%; height: 50%; position: absolute; }
                            .top-left { top: 0; right: 0; background-position: top right; z-index: 4; }
                            .top-right { top: 0; left: 0; background-position: top left; z-index: 2; }
                            .bottom-left { bottom: 0; right: 0; background-position: bottom right; z-index: 1; }
                            .bottom-right { bottom: 0; left: 0; background-position: bottom left; z-index: 3; }
                        }
                        .price { color: #686868; height: 2em;
                            .value { color: black; font-weight: bold; }
                            .unit { color: black; }
                        }
                        .product-image { width: 100%; padding: 0 20px; }
                        > .title { font-size: 1.5em; font-weight: bold; color: #686868; }
                        .product-title, .brand { font-size: 1.1em; font-weight: bold; }
                        .rate { margin-top: 15px; border: 1px solid #d4d4d4; display: inline-block; padding: 8px 28px; font-size: smaller;
                            .br-wrapper {
                                @include valign-middle();
                            }
                        }
                    }
                    .specifications { border-radius: 6px; margin: 9px; overflow: hidden; height: 110px; transition: all 0.3s ease-in-out;
                        &.auto-height { box-sizing: content-box; }
                        &.empty { background: none; border: none; }

                        .specification {
                            @include clearfix();
                            font-size: 0.85em;
                            background: white;
                            margin: 3px 3px;
                            padding: 2px;
                            .title { float: left; width: 150px; text-align: right; }
                            .value { float: right; width: 150px; text-align: left; }
                            &:first-child { border-radius: 6px 6px 0 0; }
                            &:last-child { border-radius: 0 0 6px 6px; }
                        }
                    }
                }
            }
        }
    }

    .buy-package {
        &.all-items-selected {
            .hint { color: #006100; }
        }
        .hint { text-align: center; color: red; }
        .table { display: inline-table; width: auto; table-layout: fixed;
            > div { display: table-cell; }
            .selector { white-space: nowrap; overflow: auto; text-align: right;
                .product { display: inline-block; text-align: center; position: relative; vertical-align: middle;
                    &.main { margin-bottom: 20px;
                        .product-image { padding: 2px; border-radius: 8px;
                            > img { border-radius: 5px; }
                        }
                    }
                    &.single { margin-bottom: 40px; }
                    > .product-image { border-radius: 8px; overflow: hidden; margin-bottom: 40px; }
                    .checkbox { display: inline-block; width: 51px; height: 51px; border: 1px solid #b8b8b8; border-radius: 12px; cursor: pointer;
                        &.static, &.checked { background: url('/images/package-check-mark.png') no-repeat center center white; }
                        &.static { width: 70px; height: 70px; cursor: auto; }
                    }
                    .group { width: 226px; border-radius: 8px; overflow: hidden;
                        .product-image { border-radius: unset; }
                        .owl-nav { padding-top: 10px;
                            > div { display: inline-block; background: white; padding: 0 5px; border-radius: 5px; cursor: pointer; }
                            .owl-prev { margin-right: 5px; }
                        }
                    }
                }
                .plus { margin: 50px 15px 5px; display: inline-block; vertical-align: middle; width: 28px; height: 28px; background: url('/images/package-plus.png') no-repeat center center; }
            }
            .equals-wrapper { width: 50px; vertical-align: middle;
                .equals { margin: 40px 15px 5px; width: 28px; height: 28px; background: url('/images/package-equals.png') no-repeat center center; }
            }
            .result { width: 240px; vertical-align: middle;
                .price { margin-top: 85px; color: #8b571f; font-weight: bold;
                    .value { font-size: 1.9em; }
                    .unit { font-size: 1.3em; }
                }
            }
        }
    }
    .comments {
        #rates { margin-bottom: 20px; }
    }
}
#detailsModal {
    .modal-main-image { width: 100%; }
    .stuff-details { margin-top: 16px; }
    .modal-body { padding: 16px 34px 16px 34px;
        .header { margin-left: -10px; margin-right: -10px;
            .logo { float: left;
                .pipe-kala-logo { width: 56px; }
            }
            .specs-wrapper { display: inline-block; margin-left: 71px;
                .title { font-family: IranSansWeb; font-weight: 500; }
                .data {
                    span { padding: 0 20px; border-right: 1px solid #888;
                        &:first-child { padding-left: 0; }
                        &:last-child { border-right: none; }
                    }
                }
            }
        }
    }
}

@media(max-width:1200px) {
    .stuff {
        &.list { position: relative;
            &.search.results {
                .stuff { display: block !important; }
            }
            .products {
                .stuffs-header { display: none; }
                .items-wrapper {
                    .stuffs {
                        .stuff { display: none; border-radius: 8px; box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2); background-color: #ffffff; margin-bottom: 10px; min-height: 100px; height: auto; border: none; font-size: 1em; overflow: hidden;
                            &.display-sm { display: block; }
                            &.in-cart { display: block;
                                .cell-group.price-info {
                                    .cell.size {
                                        .value {
                                            .text-value { display: initial; }
                                            .sizes { display: none; }
                                        }
                                    }
                                }
                            }
                            .cell-group { display: block; float: none; height: auto;
                                .v-center:before { display: none; }
                                .cell { border: none; width: auto; height: auto; display: block; }
                                &.general-info { background: white;
                                    .image { float: left; width: 100px; }
                                    .title-and-specs { font-size: 1em; float: none; margin-top: 1em; }
                                    .actions { float: right; padding-right: 20px; display: block; margin: 15px 0 15px 0; text-align: center;
                                        > a { display: block; margin-bottom: 10px; }
                                    }
                                }
                                &.price-info { background: #fafafa; border-top: 1px solid #ededed;
                                    .cell { display: inline-block; padding: 10px 0;
                                        .sub-title { display: block; font-weight: bold; font-size: 0.667em; color: #888; }
                                        &.size { width: 10%; margin-left: 2%;
                                            .value {
                                                .text-value { display: none; }
                                                .sizes { border-radius: 8px; display: block; }
                                            }
                                        }
                                        &.price { width: 18%; }
                                        &.count { width: 14%;
                                            input { width: 70px; }
                                        }
                                        &.discounts { width: 14%; }
                                        &.total { width: 20%; }
                                        &.discounted-total { width: 20%; margin-right: 2%; }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .filters-buttons { display: block !important;
                #show-filters-btn { display: block; }
            }
            .specification-filters-wrapper { border-bottom: none !important; position: fixed; top: 64px; left: -450px; width: 400px; height: calc(100vh - 64px); overflow: auto; background: #ededed; box-shadow: 0 2px 3px #444; z-index: 100; margin: 0 !important; padding: 15px; transition: all 0.3s;
                &.active { left: 0; }
                #hide-filters-btn { display: block; margin-bottom: 10px; }
                .filter-column { margin-bottom: 15px; border: 1px solid #b9b9b9 !important; padding: 15px; background-color: white; border-radius: 10px;
                    &.right { }
                    &.center { }
                    &.left { }
                }
            }
        }
    }
}

@media(max-width:550px) {
    .stuff {
        &.list {
            .products {
                .items-wrapper {
                    .stuffs {
                        .stuff { position: relative; background: #fafafa;
                            .cell-group {
                                .v-center:before { display: inline-block; }
                                &.general-info {
                                    .title-and-specs { float: none;
                                        &:before { display: none; }
                                        .content { display: block; }
                                    }
                                    .actions { position: absolute; bottom: -13px; width: 100%; float: none; padding: 15px; margin: 0;
                                        a.modal-link { float: right; font-size: 0.85em; height: 34px; margin-bottom: 0; line-height: 3.2em; }
                                        a.btn { float: left; font-size: 0.85em; height: 34px; }
                                    }
                                }
                                &.price-info {
                                    .cell { border-bottom: 1px dashed #ededed; height: 75px;
                                        .sub-title { }
                                        &.size { width: 50%; margin-left: 0; }
                                        &.price { width: 50%; }
                                        &.count { width: 50%;
                                            input { width: 50%; }
                                        }
                                        &.discounts { width: 50%; }
                                        &.total { width: 50%; }
                                        &.discounted-total { width: 50%; margin-right: 0; }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

@media(max-width:411px) {
    .stuff {
        &.category {
            .title-wrapper { float: none; text-align: center; }
            .text-justify { text-align: center; }
        }

        &.list { position: relative;
            .inner-page-header {
                .title-wrapper { float: none; text-align: center;
                    h2 { }
                    h1 { font-size: 22px; margin-top: 7px; }
                    .date { font-size: 0.714em; }
                }
                .links-wrapper { float: none; margin-top: 10px; clear: both; text-align: center; }
            }
            .invoice-summary { clear: both; float: none; font-size: 0.857em; text-align: center; color: #019875;
                .total { display: inline-block; position: relative; margin-right: 0; padding-right: 0; border-right: none; }
            }
            .filters-buttons { text-align: center; padding: 15px; }
            .guide { float: none; text-align: center; }
            .content-filter { float: none; clear: both; margin-top: 20px;
                .input { width: 100%; }
            }
            .specification-filters-wrapper { width: 100%; }
        }
    }

    #detailsModal {
        .modal-body { padding: 8px 16px 16px 16px;
            .header { margin-left: -10px; margin-right: -10px; text-align: center;
                .logo { display: none; }
                .specs-wrapper { margin-left: 0; }
            }
        }
    }
}*/
/*Sitemap*/
.sitemap {
  list-style: none;
  margin: 20px 0 20px 0;
  padding: 0;
  font-size: 0.9em;
}
.sitemap > li {
  display: inline-block;
}
.sitemap > li:after {
  content: "/";
  display: inline-block;
  margin: 0 5px;
}
.sitemap > li:last-child {
  border-bottom: 2px solid #0e76bc;
}
.sitemap > li:last-child:after {
  content: "";
  margin: 0;
}
.sitemap > li:last-child * {
  color: #0e76bc;
}
.sitemap .tree a.node {
  color: black;
}
.sitemap .tree a.node:hover {
  text-decoration: underline;
}
.sitemap .tree .node-text {
  padding-left: 5px;
}

@media (max-width: 680px) {
  .breadcrumb-wrapper {
    overflow-x: auto;
    width: 100%;
  }
  .breadcrumb-wrapper .sitemap {
    white-space: nowrap;
  }
}
/*Similar Items*/
.similar-items .item {
  position: relative;
  text-align: center;
  transition: 0.3s all;
  margin: 15px;
  overflow: hidden;
  height: 256px;
  border: 1px solid #069;
  background: white;
}

.similar-items .item:hover {
  box-shadow: 0 5px 10px #555;
}

.similar-items .item:hover img {
  transform: scale(1.1);
}

.similar-items .item:hover .product-name {
  height: 60%;
}

.similar-items .item:hover .summary {
  color: white !important;
}

.similar-items .item h3 a {
  color: #7B7B7B;
  display: inline-block;
}

.similar-items .item .product-name {
  transition: 0.3s all;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white !important;
  transform: rotate(0deg) !important;
  height: 70px;
  padding: 10px;
  margin: 0;
  display: block; /* Old browsers */ /* FF3.6+ */ /* Chrome,Safari4+ */ /* Chrome10+,Safari5.1+ */ /* Opera 11.10+ */ /* IE10+ */ /* W3C */ /* IE6-9 */
  background: rgba(0, 0, 0, 0.6); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ /* IE6-9 */
  text-align: center;
}

.similar-items .item .product-name a {
  color: white !important;
}

.similar-items .item .summary {
  transition: 0.3s all;
  overflow: hidden;
  text-align: center;
  display: block;
  font-size: 0.8em;
  margin-top: 10px;
  color: rgba(10, 10, 10, 0);
}

.similar-items .item .image-wrapper {
  width: 100%;
  display: block;
  padding: 0;
}

.similar-items .item .image-wrapper .image {
  width: 100%;
  display: block;
  border-radius: 3px 3px 0 0;
  padding-bottom: 40px;
  margin-top: 0;
  padding: 0;
  transition: all 0.3s;
}

/*SomeText*/
.someText {
  position: relative;
}

.someText[id]:hover {
  border: 1px dotted #ff0000;
  border: 1px dotted rgba(255, 0, 0, 0.4);
  margin: -1px;
}

.someText.editing {
  border: 1px dashed orange;
  margin: -1px;
}

.someText .toolbarWrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}

.someText .toolbar {
  position: absolute;
  top: 0;
  right: 0;
  direction: rtl;
  text-align: right;
}

.someText .toolbar .toolbar-button {
  height: 24px;
  width: 24px;
  border: none;
  background-repeat: repeat;
  cursor: pointer;
}

.someText .toolbar .save {
  background: url(/images/admin/saveIcon.png);
}

.someText .toolbar .save.saved {
  background-position: 100% -24px;
  cursor: auto;
}

.someText .toolbar .edit {
  background: url(/images/admin/editIcon.png);
}

/*Sliding Panel*/
.main-controls {
  background: url(/images/admin/main-controls-bg.png) repeat-x 100% 0;
  height: 29px;
  top: 0;
  z-index: 99999;
}

.main-controls a {
  color: white;
}

.main-controls a:hover {
  color: #cccccc;
}

.main-controls ul.controls {
  display: block;
  height: 29px;
  line-height: 28px;
  color: white;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.main-controls ul.controls li {
  text-align: center;
  padding: 0;
  list-style: none;
}

.main-controls ul.controls li.right {
  float: left;
}

.main-controls ul.controls li.left {
  float: right;
}

.main-controls ul.controls li a#exit img {
  vertical-align: middle;
}

.main-controls ul.controls li a.sliding-box {
  height: 22px;
  line-height: 22px;
  margin-top: 4px;
  padding: 0 4px 0 0;
  display: inline-block;
  background: url(/images/admin/sp-mcontrol-bg-left.png) top left no-repeat;
}

.main-controls ul.controls li a.sliding-box span.title {
  height: 22px;
  display: block;
  padding: 0 0 0 6px;
  color: white;
  background: url(/images/admin/sp-mcontrol-bg-right.png) top right no-repeat;
}

.main-controls ul.controls li a.sliding-box img {
  vertical-align: middle;
  margin-top: -3px;
}

.main-controls ul.controls li.separator {
  height: 29px;
  width: 2px;
  background: url(/images/admin/sp-separator.png);
}

.main-controls ul.controls li.control {
  padding: 0 10px;
}

.main-controls ul.controls li.control .icon {
  vertical-align: middle;
  background: url("/images/admin/glyphicons-halflings-white.png") no-repeat;
  width: 22px;
  height: 22px;
  display: inline-block;
}

* + html .main-controls ul.controls li.control .icon {
  height: 18px !important;
}

.main-controls ul.controls li.control .icon.exit {
  background-position: -380px 3px;
}

.main-controls ul.controls li.control .icon.user {
  background-position: -164px 2px;
}

.main-controls ul.controls li.control .icon.info {
  background-position: -116px -94px;
}

.main-controls li#pin {
  width: 30px;
}

.main-controls a.pin-toggle {
  width: 20px;
  height: 20px;
  line-height: 20px !important;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
  background: url(/images/admin/pin.png) no-repeat right 0;
}

.main-controls a:hover {
  background-position: right -19px;
}

.main-controls a.pinned {
  background-position: right -19px;
}

.main-controls a.pinned:hover {
  background-position: right 0;
}

.main-controls li#toggle {
  width: 56px;
}

.main-controls a.open, .main-controls a.close-setting-panel {
  width: 20px;
  height: 20px;
  line-height: 20px !important;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
}

.main-controls a.open {
  background: url(/images/admin/bt_open.png) no-repeat right 0;
}

.main-controls a.close-setting-panel {
  background: url(/images/admin/bt_close.png) no-repeat right 0;
}

.main-controls a.open:hover {
  background: url(/images/admin/bt_open.png) no-repeat right -19px;
}

.main-controls a.close-setting-panel:hover {
  background: url(/images/admin/bt_close.png) no-repeat right -19px;
}

#settingPanel {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  opacity: 0.99;
  filter: alpha(opacity=99);
}

#statistic-panel {
  transition: 0.5s all ease-in-out;
  position: fixed;
  top: 10%;
  left: -300px;
  width: 300px;
  z-index: 99998;
  opacity: 0.98;
  filter: alpha(opacity=98);
  box-shadow: none;
  border-radius: 0 3px 3px 0;
  max-height: 80%;
  height: 100%;
  margin-bottom: 0;
}

#statistic-panel.open {
  left: 0;
  box-shadow: 0 2px 9px 2px rgba(0, 0, 0, 0.14);
}

#statistic-panel .content {
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

#statistic-panel .panel-toggle {
  transition: 0.5s all ease-in-out;
  box-shadow: none;
  background: white;
  cursor: pointer;
  height: 44px;
  width: 35px;
  right: -35px;
  position: absolute;
  top: 46px;
  width: 35px;
  border: 1px solid rgba(23, 24, 26, 0.15);
  border-left: none;
  border-radius: 0 5px 5px 0;
  line-height: 50px;
  text-align: center;
  color: #007AFF;
  font-size: 14px;
}

#statistic-panel.open .panel-toggle {
  box-shadow: 0 2px 9px 2px rgba(0, 0, 0, 0.14);
}

#statistic-panel .panel-toggle .glyphicon {
  display: none;
}

#statistic-panel.closed .panel-toggle .glyphicon-chevron-left {
  display: initial;
}

#statistic-panel.open .panel-toggle .glyphicon-chevron-right {
  display: initial;
}

#statistic-panel .list-group-item label {
  color: #AAA9A9;
  font-size: 0.8em;
}

#statistic-panel .list-group-item .value {
  text-align: left;
}

#statistic-panel .list-group-item .value a {
  margin-right: 15px;
}

#statistic-panel .list-group-item .value .label {
  margin: 5px 5px 0 0;
  display: inline-block;
}

#statistic-panel .list-group-item .alert {
  padding: 5px;
  font-size: 0.9em;
  margin-bottom: 0;
}

#statistic-panel .list-group-item .alert i {
  margin-right: 5px;
  font-size: 0.8em;
}

#spUserInfo {
  display: none;
}

#spSupport {
  display: none;
  width: 250px;
  height: 250px;
}

#spUserInfo .info-row {
  height: 32px;
  line-height: 32px;
  border-bottom: 1px solid #e4e4e4;
}

#spUserInfo .info-row.last {
  border-bottom: none;
}

#panelContainer {
  height: 0;
  width: 100%;
  margin: auto;
  color: #999999;
  background: #F4F4F4;
  overflow: hidden;
  position: relative;
  z-index: 3;
  border-radius: 0 0 3px 3px;
  box-shadow: -1px 3px 4px gray;
}

/*Specification*/
.specification-wrapper .well {
  margin-bottom: 0;
}

.specification-wrapper .specification-table {
  width: 100%;
  border-spacing: 1px;
  margin-top: 20px;
}

.specification-wrapper .specification-table tr {
  border-top: 1px solid rgb(228, 228, 228);
}

.specification-wrapper .specification-table tr td {
  padding: 5px;
}

.specification-wrapper .specification-table tr:hover {
  padding: 5px;
  background: #e9e9e9;
}

.specification-wrapper .specification-table .column.title {
  color: #585858;
  min-width: 150px;
  width: 35%;
  padding-left: 10px;
}

.specification-wrapper .specification-table .group-header .column.title {
  padding: 0;
}

.specification-wrapper .specification-table .group-header {
  border: none;
}

.specification-wrapper .specification-table .group-header:hover {
  background-color: white;
}

.specification-wrapper .specification-table .group-header .group-title {
  background: #E8B61F;
  color: white;
  font-size: 1em;
  padding: 5px 10px;
  font-weight: 700;
  transform: rotate(0deg);
}

/*TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT*/
.toast-title {
  font-weight: bold;
}

.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #ffffff;
}

.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}

.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}

.toast-top-left {
  top: 12px;
  left: 12px;
}

.toast-top-right {
  top: 12px;
  right: 12px;
}

.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}

.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

#toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/
}

#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#toast-container > div {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}

#toast-container > div:hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}

#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}

#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}

#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}

#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}

#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.toast {
  background-color: #030303;
}

.toast-success {
  background-color: #51a351;
}

.toast-error {
  background-color: #bd362f;
}

.toast-info {
  background-color: #2f96b4;
}

.toast-warning {
  background-color: #f89406;
}

.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
/*@import './Styles/styles-ltr/tag.scss';*/
/*UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU*/
.unclickable {
  pointer-events: none;
}

.ui-slider {
  position: relative;
  text-align: right;
}
.ui-slider .ui-slider-handle {
  border: medium none !important;
  cursor: default;
  height: 23px;
  outline: medium none;
  position: absolute !important;
  width: 23px;
  z-index: 2;
}
.ui-slider .ui-slider-range {
  border: 0 none;
  display: block;
  font-size: 0.7em;
  position: relative;
  z-index: 1;
}

.ui-slider-horizontal {
  height: 5px;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -6px;
  margin-right: -25px;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  right: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  left: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  right: -0.3em;
  margin-right: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  right: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

/*UserInfo*/
.user-info h1 {
  font-size: 2em;
  margin-bottom: 1em;
}

/*UserPanel*/
.user-panel .panel .panel-heading {
  font-size: 1.28em;
  color: #444444;
  padding: 18px 28px;
}
.user-panel .panel .panel-heading + hr {
  border-top: 2px solid #ededed;
  margin: 5px 15px;
}
.user-panel .page-content {
  clear: both;
}
.user-panel .nav-wrapper.panel {
  text-align: center;
  padding-top: 1px;
}
.user-panel .nav-wrapper.panel li.active a {
  border-bottom: 2px solid #0e76bc;
  display: inline-block;
  padding-left: 0;
  padding-right: 0;
}
.user-panel.my-account .notifications.panel .table tr:first-child {
  border-top: none;
}
.user-panel.my-account .notifications.panel .table tr:first-child > td {
  border-top: none;
}
.user-panel.my-account .notifications.panel .table tr > td.date {
  border-top: none;
}
.user-panel.my-invoices .invoices.panel .table-responsive {
  border: none;
}
.user-panel.my-invoices .invoices.panel .table {
  border: none;
}
.user-panel.my-invoices .invoices.panel .table th {
  font-size: 0.875em;
}
.user-panel.my-invoices .invoices.panel .table th.actions {
  border: none;
  background: white;
}
.user-panel.my-invoices .invoices.panel .table tr td {
  font-size: 1.142em;
}
.user-panel.my-invoices .invoices.panel .table tr td.text-col {
  font-size: 0.928em;
}
.user-panel.my-invoices .invoices.panel .table tr td.actions {
  font-size: 0.875em;
  border: none;
  background: white;
  padding: 0;
}
.user-panel.my-invoices .invoices.panel .table tr td.actions .action-buttons {
  width: 106px;
  float: none;
}
.user-panel.my-invoices .invoices.panel .table tr td.actions .action-buttons a {
  display: block;
  color: #888888;
  border-radius: 0 25px 25px 0;
  border: 2px dashed #cecece;
  border-left: none;
  margin-bottom: 5px;
  padding: 3px;
}
.user-panel.my-invoices .invoices.panel .table tr td.actions .action-buttons a:hover {
  color: #0e76bc;
  border: 2px solid #0e76bc;
  border-left: none;
}
.user-panel.my-addresses .addresses .address .title {
  font-weight: bold;
  font-size: 0.85em;
  color: #444;
  margin-bottom: 8px;
}
.user-panel.my-addresses .addresses .address form {
  margin-bottom: 24px;
}
.user-panel.my-addresses .addresses .address form .form-group .control-label {
  font-weight: normal;
  color: #acacac;
  font-size: 0.85em;
}
.user-panel.my-addresses .addresses .address form .form-group .form-control {
  font-size: 0.82em;
  padding: 4px 15px;
  height: 35px;
  margin-right: 20px;
  border: 1px solid #888888;
}
.user-panel.my-addresses .addresses .address form .form-group:last-child .form-control {
  margin-right: 0;
  width: 300px;
}
.user-panel.my-addresses .addresses .buttons div {
  margin: 20px 0;
}
.user-panel.my-addresses .addresses .buttons .dashed-button {
  background: #fff;
  border: dashed 1px #0e76bc;
  width: 168px;
  height: 30px;
  border-radius: 15px;
  color: #0e76bc;
}
.user-panel.my-addresses .addresses .buttons .save-btn {
  width: 220px;
  height: 40px;
  border-radius: 20.5px;
  box-shadow: 0 4px 5px 0 rgba(43, 107, 180, 0.45);
}

/*VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV*/
/*ViewString*/
.viewString:hover {
  border-bottom: 1px dotted #ff0000;
  border-bottom: 1px dotted rgba(255, 0, 0, 0.4);
  margin-bottom: -1px;
}

.viewString[contentEditable=true] {
  border-bottom: 2px dotted #ff9900;
  margin-bottom: -2px;
}

/*Videos*/
.video-list .video-item {
  margin: 10px 0;
  box-shadow: 0 2px 3px #b5b5b5;
  position: relative;
}

.video-list .video-item .name {
  position: absolute;
  bottom: 0;
  padding: 5px 10px;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.video-list .video-item:hover .play {
  opacity: 1;
}

.video-list .video-item .play {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s all;
  z-index: 3;
}

.video-list .video-item .play i {
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -15px;
  margin-right: -15px;
  color: white;
}

.video-list .video-item img {
  width: 100%;
}

/*WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW*/
/*XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX*/
/*YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY*/
/*ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ*/
