div#questionary-list {
    display: flex;
    flex-wrap:wrap;
    width: 100%;
}
div#questionary-list div.items {
    display: flex;
    flex-wrap:wrap;
    width: 100%;
    gap: 24px;
}
div.girl-card__reviews-show div.girl-card__reviews-avatar img {
    border-radius: 100%;
}

div.girl-card__reviews-show div.girl-card__reviews-avatar img.forum_rank {
  width: auto;
  height: auto;
  border-radius: 0;
}

.girl-card__reviews button, .girl-card__reviews input {
    float: left;
}
@media (min-width: 1200px) {
    #questionary-view-other div.items a {
        margin-right: 10px;
    }
}
@media (min-width: 992px) {
    #questionary-view-other div.items a {
        margin-right: 10px;
    }
}

#questionary-view-other div.items a:last-child {
    margin-right: 0px;
}

#questionary-view-other span {
  cursor:pointer;
}

/* div.girl-card__ready-call.noimg strong:before {
    background: url(/themes/dgirls3/img/imgpsh_fullsize.jpg) no-repeat;
} */
section.girls .girls-wrap div#questionary-list {
    padding-top: 0px;
}
div.girl-card__cost table tr td {
    padding: 1px;
}


/*
Height preview is too match for once preview
@media (min-width: 1200px) {
    section.girls div.girls-wrap {
        min-height: 370px;
    }
}*/

main {
    min-height: calc(100vh - 241px);
}



/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
.green-btn {
  background: #16a085;
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: none;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: background-color 0.25s;
  -khtml-transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  -ms-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  transition: background-color 0.25s;
  padding: 5px 12px;
  margin-top: 30px;
  margin-bottom: 10px; }
  .green-btn:hover {
    background: #148F77; }
  .green-btn.disabled {
    background: #6b6b6b; }

.orange-btn {
  background: #811c67;
  color: #ffffff;
  display: block;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: none;
  
  padding: 8px 10px; }
  .orange-btn:hover {
    background: #530c41; }
  .orange-btn.disabled {
    background: #530c41; }
  

.purple-btn {
  background: #663366;
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: none;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: background-color 0.25s;
  -khtml-transition: background-color 0.25s;
  -moz-transition: background-color 0.25s;
  -ms-transition: background-color 0.25s;
  -o-transition: background-color 0.25s;
  transition: background-color 0.25s;
  box-shadow: 0 4px 0 #4E244E;
  padding: 8px 10px; }
  .purple-btn:hover {
    background: #5A2D5A; }
  .purple-btn.disabled {
    background: #6b6b6b; }
  .purple-btn:hover {
    box-shadow: 0 4px 0 #4E244E; }
	
	
	

/* General styles for the modal */
/*
Styles for the html/body for special modal where we want 3d effects
Note that we need a container wrapping all content on the page for the
perspective effects (not including the modals and the overlay).
*/
.md-perspective,
.md-perspective body {
  height: 100%;
  overflow: hidden; }

.md-perspective body {
  background: #222;
  -webkit-perspective: 600px;
  -moz-perspective: 600px;
  perspective: 600px; }

.container {
  min-height: 100%; }

.md-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 630px;
  min-width: 320px;
  height: auto;
  z-index: 20000000000000000000;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.md-show {
  visibility: visible; }

.md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 10000000;
  opacity: 0;
  background: rgba(143, 27, 15, 0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }

.md-show ~ .md-overlay {
  opacity: 0.95;
  visibility: visible; }

/* Content styles */
.md-content {
  color: #fff;
  background: #e74c3c;
  position: relative;
  border-radius: 3px;
  margin: 0 auto; }

.md-content h3 {
  margin: 0;
  padding: 0.4em;
  text-align: center;
  font-size: 2.4em;
  font-weight: 300;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px 3px 0 0; }

.md-content > div {
  padding: 15px 40px 30px;
  margin: 0;
  font-weight: 300;
  font-size: 1.15em; }

.md-content > div p {
  margin: 0;
  padding: 10px 0; }

.md-content > div ul {
  margin: 0;
  padding: 0 0 30px 20px; }

.md-content > div ul li {
  padding: 5px 0; }

.md-content button {
  display: block;
  margin: 0 auto;
  font-size: 0.8em; }

/* Effect 12:  Just me */
.md-effect-12 .md-content {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }

.md-show.md-effect-12 ~ .md-overlay {
  background: #411635; }

.md-effect-12 .md-content h3,
.md-effect-12 .md-content {
  background: transparent; }

.md-show.md-effect-12 .md-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.md-close {
  cursor: pointer; }

/* Flairs */
.profile-flair {
  margin: 0;
  padding: 8px;
}
.profile-flair a {
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: top;
}
.postprofile {
  display: inline-block;
}
.postprofile a, .postprofile dt.author a {
  font-weight: bold;
  text-decoration: none;
  color: #49A0CC;
}
.flair-icon {
  display: inline-block;
  position: relative;
  text-align: center;
}
.postprofile {
  color: #666666;
}
.history ul.yiiPager {
  display: flex;
  list-style:none;
}
.history ul.yiiPager li {
  margin-left: 10px;
  margin-right: 10px;
}

h1.photo_desc {
  text-align: center;
  line-height: 50px;
  margin: 0;
  font-family: "Playfair Display SC",serif;
  font-weight: 400;
  font-size: 1.75em;
  color: #f09;
}
h1.photo_desc em {
  font-style: normal;
}
h1.photo_desc a {
  margin-left: 20px;
  padding-left: 35px;
  background-image: url(/themes/newd2/img/icon-phone-big.png);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 25px;
  display: inline-block;
  font-size: 1.2em;
  font-family: "Times New Roman", Georgia, Serif;
  color: rgb(255, 0, 153) !important;
  text-decoration: none;
}

@media screen and (max-device-width: 768px) {
  h1.photo_desc {
    font-size: 1.5em;
  }

  h1.photo_desc em {
    display: none;
  }
}

.fancybox-container .fancybox-inner .fancybox-caption {
  border-top:none;
}

#questionary-view-other div.items a {
  color:#FFF;
}
.flickity-viewport li img {
  max-width: 1000px;
}