/** Shopify CDN: Minification failed

Line 20:0 Unexpected "$"
Line 55:0 Unexpected "$"
Line 83:0 Comments in CSS use "/* ... */" instead of "//"
Line 85:0 Comments in CSS use "/* ... */" instead of "//"
Line 464:10 Comments in CSS use "/* ... */" instead of "//"
Line 465:10 Comments in CSS use "/* ... */" instead of "//"
Line 466:10 Comments in CSS use "/* ... */" instead of "//"
Line 467:10 Comments in CSS use "/* ... */" instead of "//"
Line 468:10 Comments in CSS use "/* ... */" instead of "//"
Line 469:10 Comments in CSS use "/* ... */" instead of "//"
... and 3 more hidden warnings

**/
/******************************************************************
Custom Style
*******************************************************************/
/*================ Variables ================*/
$black: #0A0A0A;
$white: #FFFFFF;
$green: #00FF51;
$new-gutter-1: 100px;
$new-gutter-2: 150px;

/*================ Media Query Mixin ================*/

@mixin media-query($media-query) {
  @each $breakpoint in $grid-breakpoints {
    $name: nth($breakpoint, 1);
    $declaration: nth($breakpoint, 2);

    @if $media-query == $name and $declaration {
      @media only screen and #{$declaration} {
        @content;
      }
    }
  }
}


@mixin placeholder {
  ::-webkit-input-placeholder {@content}
  :-moz-placeholder           {@content}
  ::-moz-placeholder          {@content}
  :-ms-input-placeholder      {@content}  
}


/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/

$grid-medium: 590px;

$grid-large: 769px;

$grid-widescreen: 1050px;

$small: 'small';

$medium: 'medium';

$medium-down: 'medium-down';

$medium-up: 'medium-up';

$large: 'large';

$large-down: 'large-down';

$large-up: 'large-up';

$widescreen: 'widescreen';

$grid-breakpoint-has-widths: ($small, $medium-up, $widescreen);

$grid-breakpoint-has-utility: ($small, $medium-down, $medium-up, $large-up, $widescreen);

$grid-breakpoint-has-push: ($medium-up);

// The `$grid-breakpoints` list is used to build our media queries.

// You can use these in the media-query mixin.

$grid-breakpoints: (
  $small '(max-width: #{$grid-medium - 1})',
  $medium '(min-width: #{$grid-medium}) and (max-width: #{$grid-large - 1})',
  $medium-down '(max-width: #{$grid-large - 1})',
  $medium-up '(min-width: #{$grid-medium})',
  $large '(min-width: #{$grid-large}) and (max-width: #{$grid-widescreen - 1})',
  $large-down '(max-width: #{$grid-widescreen - 1})',
  $large-up '(min-width: #{$grid-large})',
  $widescreen '(min-width: #{$grid-widescreen})'
);

/*================ Header ================*/

@include media-query($small) {
  .stickyHeader .site-header .header-logo img,
  .stickyHeader .site-header .header-logo svg { 
    max-height:60px; 
    max-width:130px; 
  }

}


/*================ Prom Tuxedos Page ================*/
.prome-tuxedo__container{
  h2{
    font-size: 32px;
    margin-top: 20px;
  }
}

.page-prom-tuxedos-video-container{
  display: flex;

  .prom-tuxedo-findyoursize, .prom-tuxedo-video{
    flex: 1;
  }

  .prom-tuxedo-video{
    .video-text{
      &.abovevideo{
        position: relative;
        text-align: center;
        font-weight: 700;
      }
    } 
  }

  @include media-query($medium-down) {
    display: block;
  }
}

.prom-tuxedo-features{

  .store-info li a{
    @include media-query($medium-down) {
      display: block;
    }
  }

  .store-info{
    .item a{
      text-align: center;
      i{
        margin-bottom: 10px;
        @include media-query($small) {
          font-size: 40px!important;
          width: 50px!important;
        }
        
      }
    }
  }

  .slick-dots{
    display: flex;
    justify-content: center;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    li{
      display: flex;
      justify-content: center;
      width: 20px;
      flex: none;
    }
  }
}

.slider-lookbook{
  .grid-lookbook {
    .collection-grid-item{
      height: 250px;
      width: auto;
      @include media-query($small) {
        width: 100%;
        height: 180px;
        
      }
      .imgFl{
        max-width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}
.sizecalmodal, .size-result-modal{ border-radius: 10px; max-width: 500px;}
.sizemodal-wrapper{

  h2{
    margin-bottom: 20px;
    font-weight: 700;
  }

  .MuiGrid-root{
    display: flex;
    flex-direction: column;
    vertical-align: top;
    position: relative;

    label{
      font-weight: bold;
      transform: translate(14px, -6px) scale(0.75);
      pointer-events: none;
      transform: translate(0, 1.5px) scale(0.75);
      transform-origin: top left;
    }
  }

  .MuiOutlinedInput-root {
    position: relative;
    border-radius: 4px;
    width: 100%;
  }

  .MuiInputBase-input{
    width: 100%;
    border-radius: 4px;
  }

  .MuiSelect-outlined {
    border-radius: 4px;
  }
  .MuiOutlinedInput-input {
    padding: 18.5px 14px;
  }

  .action{
    margin-top: 20px;
    justify-content: center;
    button{
      margin: 0 10px;
      border-radius: 4px;
    }
  }
}

.size-result-modal{
  .sizemodal-wrapper__header {

    p{
      line-height: 1.6;
    }

    a {
      text-decoration: underline;
      font-weight: bold;
      padding-left: 20px;
    }
  }

  .sizemodal-wrapper__content{
    text-align: center;
    padding-top: 35px;

    .coat-title, .waist-title{
      font-size: 40px;
      font-weight: bold;
    }

    .waist-size, .coat-size{
      font-size: 24px;
      font-weight: 500;
    }

    .comment{

    }
  }
}
/*================ Wedding Page ================*/
.page-wedding-registration{

  .header-image__wrapper{
    width: 100%;
    img{
      width: 100%;
      object-fit: cover;
    }
  }

  .simple-text{
    padding-top: 20px;
  }
}

.page-wedding-registration #mc_embed_signup form{
  padding-left: 0;
}
.page-wedding-registration #mc_embed_signup .mc-field-group{
  padding-bottom: 0;
}

.page-wedding-registration #mc_embed_signup .button{
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 2px solid rgba(0,0,0,0);
  background-color: #384bc5;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  white-space: normal;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  white-space: nowrap;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
.page-wedding-faq h3{
  font-size: 25px;
}
.page-wedding-faq .bottom p{
  padding-top: 40px;
  font-size: 20px;
}

.page-wedding-featuresteps{

  .featured__items-desc{
    padding-top: 40px;
  }


  .findyoursize-btn{
    margin-top: 20px;
  }

}

.findyoursize-btn{
  margin-bottom: 10px;
  i{
    padding-right: 10px;
  }
}

/*================ Size Guide Page ================*/
.sizeguide-table-wrapper{
  position: relative;
  
  @include media-query($medium-down) {
    overflow-x: scroll;
  }
}

/*================ Match The Dress Page ================*/
.page-match-the-dress{
  position: relative;
  
  .custom__item-inner--collection{
    .imgWrap{
      .img{
        padding-bottom: 115%!important;
      }
    }
  }

  @include media-query($medium-down) {
    
  }
}

/*================ Policy Pagess ================*/
.main-content .shopify-policy__container{
  
}

/*================ Product Page ================*/
.product-single__meta{
  .findyoursize-link{
    font-size: 12px;
  }

  .product-form.mfp-link{
    position: relative;
    .option-title{
      margin-right: 12px;
    }
    .sizelink {
      margin-left: 0;
    }
  }

  .product-form__item{
    label{
      margin-bottom: 10px;
    }
  }
  .findyoursize-btn{
    width: 100%;
  }
}

.infolinks .product__inquiry-btn.btn{
  width: 100%;
  color: #fff;
  margin-bottom: 30px;

  &:hover{
    color: #ffffff;
    background-color: #1d2b89;
    border-color: rgba(0,0,0,0);
    opacity: 1;
  }
}
.arrival_date{
  margin-bottom: 20px;
  span{
    margin: 0 5px;
  }
}

.product-page-bundle{
  .bundle-title{
    text-align: center;
  }
  .bundle-desc{
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #111111;
  }
  .bundle__wrapper{
    display: flex;
    
    .ptContainer {
      flex-basis: 30%;
      max-width: 30%;
      margin: 0 auto;

      .grid__item{

        &.product-single__photos{
          margin-bottom: 10px;
        }

        .product-single__meta .product-form__item label {
          font-size: 12px;
        }

        .product-single__title{
          padding-top: 10px;
          margin-bottom: 10px;
          // overflow: hidden;
          // text-overflow: ellipsis;
          // white-space: initial;
          // display: -webkit-box;
          // -webkit-line-clamp: 2;
          // -webkit-box-orient: vertical;

          @include media-query($medium-down) {
            font-size: 12px;
          }
        }

        .product-single__price{
          margin-bottom: 0;

          span{
            @include media-query($medium-down) {
              font-size: 12px;
            }
          }
        }

        .product-action{
          flex-wrap: nowrap;

          @include media-query($medium-down) {
            button {
              padding: 5px;
              font-size: 12px;
            }
          }
        }
      }
    }
  }

  &.item-length-1{
    .bundle__wrapper .ptContainer {
      max-width: 50%;
      flex-basis: 50%;

      @include media-query($medium-down) {
        max-width: 70%;
        flex-basis: 70%;
      }
    }
  }

  &.item-length-2{
    .bundle__wrapper .ptContainer {
      max-width: 45%;
      flex-basis: 45%;
    }
  }
}

/*================ Bundle PopUp ================*/


/*================ Collection Page ================*/

.divider{
  padding: 5px 0;
}

.boost-pfs-filter-left-col{
  margin-top: 18px;
}

.boost-pfs-filter-right-col{

  .boost-pfs-filter-default-toolbar{
    margin-bottom: 20px;
  }

}

.boost-pfs-filter-wrapper .boost-pfs-container-default-box{
  margin-bottom: 20px;
}

.boost-pfs-filter-toolbar-top-mobile-inner{
  .boost-pfs-filter-top-sorting-wrapper>span::after{
    border-color: #fff;
  }
  .boost-pfs-filter-custom-filter-button:before, .boost-pfs-filter-tree-mobile-button button:before{
      background-image: url('{{ 'icon-filter.svg' | asset_url }}');
      
  }
}


/*================ Global Setting ================*/
// .mfpbox{
//   max-width: 1200px;
// }

@font-face {
  font-family: "Act_Of_Rejection";
  src: url('{{"Act_Of_Rejection.woff" | asset_url}} ') format("woff"),
  url('{{"Act_Of_Rejection.woff2" | asset_url}} ') format("woff2");
  font-weight: 400;
  font-style: normal;
}

#site-scroll {
  bottom: 90px;
  right: 33px;
}

@media screen and (max-width: 1600px) and (min-width: 1024px) {
  #siteNav div.megamenu.right { right:auto; }
}
/* new css */
#shopify-section-sub-collections .collection-banner.top, #shopify-section-sub-collections-tuxedos .collection-banner.top, #shopify-section-sub-collections-boys .collection-banner.top, #shopify-section-sub-collections-womens .collection-banner.top {
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: 50% 0;
}
.collection-grid-item {
    margin: 0 2px 4px;
}
.faq-style2 h3 {
    padding: 15px 20px;
}
.wrap-block {
   text-align: center;
}
.faq-style1 .panel-title::after {
  content: "\ebe0";
  font-family: adorn-icons;
  font-size: 12px;
  margin-left: 10px;
}
.faq-style1 .panel-title.active::after {
  content: "\ebd1";
}
.faq-style1 .faq-body + .faq-body .panel-content {
  display: none;
}
.faq-body .panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.video-text .ttl {
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}
.section-cover {
    padding: 55px;
}
.pd-15 .collection-grid-item {
  margin: 0 7.5px 15px;
}
.about-style-2 .block-des {
  margin-bottom: 35px;
}
.boost-pfs-search-suggestion-mobile.boost-pfs-search-suggestion-wrapper {
  background: transparent!important;
}
@media (min-width: 768px) and (max-width: 1024px){
  #your-shopping-cart #cartCheckout{
      padding: 10px 15px !important;
}
}
