/* Studio Category CSS START */
.row {
    position: relative;
}
.row.row--header {
    width: 1300px;
    margin: 0 0 30px -190px;
}
.row.row--animation {
    height: 630px;
    margin-left: 10px;
}
.row.row--body {
    margin: -50px 0 20px;
}
.row .text-container h2,
.row .text-container h3,
.row .text-container p {
    letter-spacing: normal;
    line-height: 1.2;
    margin: 0;
    text-transform: none;
}
.row .text-container h2 {
    color: #fff;
}
.row .text-container h3 {
    color: #505050;
    font-size: 22px;
}
.row .text-container p {
    font-size: 18px;
    line-height: 1.3;
}

/* ====================================== */
/* ========== CONTAINER HEADER ========== */
/* ====================================== */
.row.row--header img {
    max-width: none;
    min-width: auto;
}

  .row.row--header .text-container {
    position: absolute;
    text-align: center;
    top: 65px;
    left: 34%;
    width: 30%;
  }

  .row.row--header .text-container h2 {
    font-size: 50px;
  }

  .row.row--header .text-container p {
    color: #505050;
    margin: 10px 0 15px;
  }

  .row.row--header .text-container a.button-scroll {
    border: 1px solid #2f3349;
        color: #2f3349;
        background-color: #fff;
        display: inline-block;
        font-size: 20px;
        padding: 12px 24px;
        text-transform: uppercase;
        cursor: pointer;
  }

  .row.row--header .text-container a.button-scroll:hover,
  .row.row--header .text-container a.button-scroll:active,
  .row.row--header .text-container a.button-scroll:focus {
    background-color: #2f3349;
    border: 1px solid #fff;
    color: #fff;
  }

  /* ========================================= */
  /* ========== CONTAINER ANIMATION ========== */
  /* ========================================= */

  .row.row--animation .shoe {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-name: shoe-anim;
    opacity: 0;
  }

  @keyframes shoe-anim {
    0% {
      opacity: 0;
      /* IE 8 */
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      -webkit-opacity: 0;
      /* IE 5-7 */
      filter: alpha(opacity=0);

      /* Netscape */
      -moz-opacity: 0;

      /* Safari 1.x */
      -khtml-opacity: 0;
    }

    100% {
      opacity: 1;
      /* IE 8 */
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -webkit-opacity: 1;
      /* IE 5-7 */
      filter: alpha(opacity=100);

      /* Netscape */
      -moz-opacity: 1;

      /* Safari 1.x */
      -khtml-opacity: 1;
    }
  }

  .row.row--animation .dots,
  .row.row--animation .lines,
  .row.row--animation .texts {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }

  .row.row--animation .shoe .layer {
    animation-fill-mode: forwards;
    position: absolute;
  }

  .row.row--animation .shoe .layer img {
    width: 100%;
  }

  .row.row--animation .shoe .layer.layer-1 {
    animation-delay: 2s;
    animation-duration: 4s;
    animation-name: shoe-layer-1-anim;
    top: 155px;
    left: 80px;
    transform: rotate(38deg);
    width: 410px;
    z-index: 10;
  }

  @keyframes shoe-layer-1-anim {
    0% {
      top: 155px;
      left: 80px;
      transform: rotate(38deg);
    }

    100% {
      top: 20px;
      left: 0;
      transform: rotate(0);
    }
  }

  .row.row--animation .shoe .layer.layer-2 {
    animation-delay: 2.5s;
    animation-duration: 3.5s;
    animation-name: shoe-layer-2-anim;
    top: 255px;
    left: 37px;
    transform: rotate(27deg);
    width: 447px;
    z-index: 9;
  }

  @keyframes shoe-layer-2-anim {
    0% {
      top: 255px;
      left: 37px;
      transform: rotate(27deg);
    }

    100% {
      top: 200px;
      left: 10px;
      transform: rotate(0);
    }
  }

  .row.row--animation .shoe .layer.layer-3 {
    animation-delay: 2s;
    animation-duration: 4s;
    animation-name: shoe-layer-3-anim;
    top: 310px;
    left: 8px;
    transform: rotate(20deg);
    width: 500px;
    z-index: 8;
  }

  @keyframes shoe-layer-3-anim {
    0% {
      top: 310px;
      left: 8px;
      transform: rotate(20deg);
    }

    100% {
      top: 295px;
      left: 0;
      transform: rotate(0);
    }
  }

  .row.row--animation .shoe .layer.layer-4 {
    animation-delay: 2s;
    animation-duration: 4s;
    animation-name: shoe-layer-4-anim;
    top: 410px;
    width: 230px;
    left: 219px;
    transform: rotate(7deg);
    z-index: 9;
  }

  @keyframes shoe-layer-4-anim {
    0% {
      top: 410px;
      transform: rotate(7deg);
    }

    100% {
      top: 430px;
      transform: rotate(0);
    }
  }

  .row.row--animation .shoe .layer.shadow-1 {
    animation-delay: 2s;
    animation-duration: 4s;
    animation-name: shadow-layer-1-anim;
    top: 385px;
    left: 15px;
    opacity: 0;
    width: 520px;
    z-index: 7;
  }

  @keyframes shadow-layer-1-anim {
    0% {
      top: 385px;
      left: 15px;
      opacity: 1;
    }

    100% {
      top: 445px;
      left: 5px;
      opacity: .6;
    }
  }

  .row.row--animation .shoe .layer.shadow-2 {
    animation-delay: 2s;
    animation-duration: 4s;
    animation-name: shadow-layer-2-anim;
    top: 447px;
    opacity: 0;
    width: 235px;
    left: 210px;
    z-index: 7;
  }

  @keyframes shadow-layer-2-anim {
    0% {
      top: 447px;
      opacity: 1;
      width: 235px;
    }

    100% {
      top: 490px;
      opacity: .6;
      width: 275px;
    }
  }

  /* ========================== */
  /* ========== DOTS ========== */
  /* ========================== */

  .row.row--animation .dots .dot {
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-name: dot-anim;
    background-color: #e8cc91;
    border-radius: 50%;
    height: 12px;
    position: absolute;
    width: 12px;
    z-index: 20;
    opacity: 0;
  }

  .row.row--animation .dots .dot.dot-1 {
    animation-delay: 6s;
    top: 75px;
    left: 313px;
  }

  .row.row--animation .dots .dot.dot-2 {
    animation-delay: 6.5s;
    top: 140px;
    left: 300px;
  }

  .row.row--animation .dots .dot.dot-3 {
    animation-delay: 7s;
    top: 200px;
    left: 175px;
  }

  .row.row--animation .dots .dot.dot-4 {
    animation-delay: 7.5s;
    top: 245px;
    left: 360px;
  }

  .row.row--animation .dots .dot.dot-5 {
    animation-delay: 8s;
    top: 275px;
    left: 370px;
  }

  .row.row--animation .dots .dot.dot-6 {
    animation-delay: 8.5s;
    top: 380px;
    left: 350px;
  }

  .row.row--animation .dots .dot.dot-7 {
    animation-delay: 9s;
    top: 470px;
    left: 380px;
  }

  @keyframes dot-anim {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  /* =========================== */
  /* ========== LINES ========== */
  /* =========================== */

  .row.row--animation .lines .line {
    animation-fill-mode: forwards;
    height: 100px;
    position: absolute;
    z-index: 19;
  }

  .row.row--animation .lines .line svg {
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-name: line-anim;
    height: 100%;
    width: 0;
  }

  .row.row--animation .lines .line line {
    stroke: #e8cc91;
    stroke-width: 1;
  }

  .row.row--animation .lines .line.line-1 {
    left: 315px;
    top: 12px;
    width: 295px;
  }

  .row.row--animation .lines .line.line-1 svg {
    animation-delay: 6.5s;
  }

  .row.row--animation .lines .line.line-2 {
    left: 308px;
    top: 75px;
    width: 323px;
  }

  .row.row--animation .lines .line.line-2 svg {
    animation-delay: 7s;
  }

  .row.row--animation .lines .line.line-3 {
    left: 187px;
    top: 135px;
    width: 450px;
  }

  .row.row--animation .lines .line.line-3 svg {
    animation-delay: 7.5s;
  }

  .row.row--animation .lines .line.line-4 {
    left: 371px;
    top: 250px;
    width: 221px;
  }

  .row.row--animation .lines .line.line-4 svg {
    animation-delay: 8s;
  }

  .row.row--animation .lines .line.line-5 {
    left: 380px;
    top: 282px;
    width: 266px;
  }

  .row.row--animation .lines .line.line-5 svg {
    animation-delay: 8.5s;
  }

  .row.row--animation .lines .line.line-6 {
    left: 360px;
    top: 387px;
    width: 192px;
  }

  .row.row--animation .lines .line.line-6 svg {
    animation-delay: 9s;
  }

  .row.row--animation .lines .line.line-7 {
    left: 385px;
    top: 475px;
    width: 166px;
  }

  .row.row--animation .lines .line.line-7 svg {
    animation-delay: 9.5s;
  }

  @keyframes line-anim {
    0% {
      width: 0;
    }

    100% {
      width: 100%;
    }
  }

  /* =========================== */
  /* ========== TEXTS ========== */
  /* =========================== */

  .row.row--animation .texts .text {
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-name: text-anim;
    opacity: 0;
    position: absolute;
    z-index: 20;
  }

  .row.row--animation .texts .text img {
    width: 80px;
    height:80px;
    min-width: auto;
    display: inline-block;
    vertical-align: middle;
  }

  .row.row--animation .texts .text p {
    color: #2f3349;
    display: inline-block;
    font-size: 14px;
    letter-spacing: normal;
    line-height: 1.2;
    margin: 0 0 0 10px;
    vertical-align: middle;
  }

  .row.row--animation .texts .text.text-1 {
    animation-delay: 7s;
    top: 0;
    right: 80px;
  }

  .row.row--animation .texts .text.text-2 {
    animation-delay: 7.5s;
    top: 60px;
    right: 40px;
  }

  .row.row--animation .texts .text.text-3 {
    animation-delay: 8s;
    top: 165px;
    right: 0px;
  }

  .row.row--animation .texts .text.text-4 {
    animation-delay: 8.5s;
    top: 225px;
    right: 35px;
  }

  .row.row--animation .texts .text.text-5 {
    animation-delay: 9s;
    top: 335px;
    right: 0px;
  }

  .row.row--animation .texts .text.text-6 {
    animation-delay: 9.5s;
    top: 440px;
    right: 55px;
  }

  @keyframes text-anim {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .row.row--animation .animation--footer {
    position: absolute;
    bottom: 70px;
  }

  .row.row--animation .animation--footer p {
    color: #2f3349;
    font-size: 14px;
    letter-spacing: normal;
    line-height: 1.2;
  }

  /* ================================= */
    /* ========= CONTAINER BODY ======== */
    /* ================================= */

  .row.row--body .text-container {
    position: absolute;
    right: 20px;
    text-align: center;
    top: 65px;
    width: 46%;
  }

  .row.row--body .text-container h2 {
    font-size: 40px;
  }

  .row.row--body .text-container p {
    color: #fff;
  }

  .row.row--body .text-container .line {
    background-color: #fff;
    height: 3px;
    margin: 20px auto;
    width: 50px;
  }

  /* ================================== */
    /* ========= PRODUCT LINK(S) ======== */
    /* ================================== */

  .row.row--header a.product-link,
    .row.row--body a.product-link {
        border-color: #fff;
        border-radius: 50%;
        border: 3px solid;
        bottom: 75px;
        box-sizing: border-box;
        color: #fff;
        display: block;
        font-size: 26px;
        height: 24px;
        line-height: 1;
        position: absolute;
        right: 120px;
        text-align: center;
        text-decoration: none;
        width: 24px;
        z-index: 1;
    }

  .row.row--body a.product-link.dark {
    border-color: #2f3349;
    color: #2f3349;
  }

  .row.row--header a.product-link:hover,
  .row.row--body a.product-link:hover {
    border-color: #4ea8ca;
    color: #4ea8ca;
  }

  .row.row--header a.product-link-1 {
    left: 180px;
    top: 190px;
  }

  .row.row--header a.product-link-2 {
    right: 110px;
    top: 215px;
  }

  .row.row--body a.product-link-1 {
    left: 130px;
    top: 180px;
  }

  /*.row.row--body a.product-link-2 {
    left: 375px;
    top: 180px;
  }*/

  .row.row--body a.product-link-3 {
    left: 385px;
    top: 250px;
  }

  .row.row--body a.product-link-4 {
    left: 30px;
    bottom: 50px;
  }

  .row.row--body a.product-link-5 {
    left: 375px;
    bottom: 50px;
  }

  .row.row--header a.product-link span,
    .row.row--body a.product-link span {
        display: block;
        margin: -5px auto 0 0;
    }


.studio-cat-page .ty-mainbox-title{
    margin-top: 0px;
    margin-bottom: 0px;
}
/* Studio Category CSS END */




/* CATEGORY PAGE */
#elm_pagination_steps .ty-sort-dropdown__content-item a:hover,
#elm_sort_fields .ty-sort-dropdown__content-item a:hover{
    color: white;
}

.ty-product-filters__search{
    display: none;
}
.category-products-grid{
    margin-left: 0 !important;
    border-left: 1px solid #e8e8ea;
    padding-left: 20px;
}
.category-products-grid .ty-mainbox-title .ty-mainbox-title__right{
    margin-top: 0px;
}
.category-products-grid h1.ty-mainbox-title span{
    text-transform: uppercase;
}
.cat-banner {
    height: 260px;
    padding: 0 40px;
    margin-bottom: 20px;
    position: relative;
}
.cat-banner img.background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.cat-banner img {
    min-width: auto;
}
.cat-banner .cat-banner-text.right-spot {
    text-align: right;
}
.cat-banner .cat-banner-text.left-spot {
    text-align: left;
}
.cat-banner .cat-banner-text {
    position: relative;
    top: 46%;
    transform: translateY(-46%);
}
.cat-banner .cat-banner-text p {
    font-size: 22px;
    line-height: 1.2;
}
.cat-banner a.product-link.product-link-1 {
    bottom: 45px;
    left: 155px;
}
.cat-banner a.product-link span {
    display: block;
    margin: -5px auto 0 0;
}
.cat-banner a.product-link.light, .cat-banner .cat-banner-text h3.light, .cat-banner .cat-banner-text p.light {
    border-color: #fff;
    color: #fff;
}
.cat-banner.flatforms a.product-link{
    bottom: 45px;
    line-height: 1;
    right: 148px;
}
.cat-banner a.product-link:hover, .cat-banner a.product-link.light:hover {
    color: #adc7e8;
    border-color: #adc7e8;
}
.cat-banner a.product-link {
    border-color: #2f3349;
    border-radius: 50%;
    border: 3px solid;
    bottom: 75px;
    box-sizing: border-box;
    color: #2f3349;
    display: block;
    font-size: 26px;
    height: 24px;
    line-height: 0.7;
    position: absolute;
    right: 120px;
    text-align: center;
    text-decoration: none;
    width: 24px;
    z-index: 1;
}
#women-shopby-seasonalcollection-banner .kedstex1-content {
    position: absolute;
    text-align: right;
    right: 40px;
    bottom: 100px;
}
#women-shopby-seasonalcollection-banner h3 {
    color: #2f3349;
    font-size: 34px;
    letter-spacing: 0.025em;
    margin: 0 0 13px;
}
#women-shopby-seasonalcollection-banner p {
    color: #2f3349;
    font-size: 22px;
    line-height: 26px;
}
.kedstext1 {
    color: #505050;
    font-size: 12px;
    position: relative;
}
.category-products-grid .subcategories{
    display: none;
}
.ty-grid-list__item {
    background: #fff;
    margin: 0 !important;
    padding: 0px 15px;
    border-bottom: solid 1px #d5dce4;
    min-height: 300px;
}
.ty-grid-list__item .ty-grid-list__image .owl-buttons > div > i{
	  color: #283980;
}
.grid-list .ty-column3:nth-last-child(-n+3) .ty-grid-list__item {
    border-bottom-width: 0px;
}
.ty-grid-list__image {
    border: 0;
    padding: 0 0 5px 0;
    min-height: 200px;
}
.ty-grid-list__item-name {
    margin-top: 15px;
    /*min-height: 40px;*/
    max-width: 100%;
    display: block;
    text-align: center;
}
.ty-grid-list__item-name a{
    /*font-size: 12px !important;*/
    letter-spacing: .025em;
    line-height: 17px;
    color: #444 !important;
    min-height: 35px;
}
.ty-discount-label{
    display: none;
}
.ty-grid-list__price {
    display: block;
    margin-top: 0;
    min-height: 40px;
    max-width: 100% !important;
    text-align: center;
    font-size: 12px;
    letter-spacing: .025em;
    line-height: 20px;
    color: #777;
    float: none;
}
.ty-list-price {
    font-size: 12px;
    letter-spacing: .025em;
    line-height: 20px;
    color: #777;
}
.ty-price-num{
    font-size: 14px;
    font-weight: 300;
}
.ty-price-update .ty-price{
    color: #666;
}
.ty-grid-list__control {
    width: auto;
    margin-left: 20px;
    position: absolute;
    z-index: 999;
}
.ty-grid-list__image .ty-pict{
  max-height: 218px;
}
.ty-quick-view-button {
    text-align: center;
    padding-top: 0px;
}
.ty-quick-view-button .ty-btn__secondary {
    background: #123082 !important;
    color: #fff !important;
    padding: 10px 25px 7px;
}
.ty-quick-view-button .ty-btn__secondary:hover {
    background: #4ea8ca !important;
}
.ty-discount-label {
    top: 160px;
    background: #bb0a10;
    border-radius: 12px;
}
.ty-product-block__img-wrapper .ty-discount-label {
    top: 20px;
    right: 20px;
}
.ty-pagination__bottom{
    border-top-width: 0px; 
}

/* quick view */
.ty-quick-view__wrapper .ty-product-img {
    background: #fff;
}
.ty-product-switcher span {
    color: #00274d;
}
.ty-quick-view__wrapper .ty-product-options,
.ty-quick-view__wrapper .ty-product-block__field-group,
.ty-quick-view__wrapper .ty-product-block__sku {
    display: none;
}

@media (min-width: 767px) and (max-width: 800px) {
    .row.row--header{
        margin: 0 0 30px -40%;
    }
    .cat-banner{
        height: 208px;
    }
    .row.row--animation{
        zoom: 80%;
    }
    .grid-list .ty-column3:nth-last-child(-n+3) .ty-grid-list__item{
        border-bottom-width: 1px;
    }
    .row.row--body a.product-link-1 {
        left: 100px;
        top: 150px;
    }
    .row.row--body a.product-link-5 {
        left: 260px;
        bottom: 50px;
    }
    .row.row--body a.product-link-3 {
        left: 310px;
        top: 198px;
    }
    #women-shopby-seasonalcollection-banner .kedstex1-content{
      bottom: 60px;
    }
}

@media (min-width: 801px) and (max-width: 1025px) {
    .cat-banner{
        height: 260px;
    }
}

@media (min-width: 767px){
    .tygh-content{
        overflow-x: hidden;
    }

}