@charset "UTF-8";
@import url("https://use.typekit.net/jrk3exg.css");

@-webkit-keyframes shine {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shine {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes AniFloat {
    0% {
        -webkit-transform: translateY(3.5%);
        transform: translateY(3.5%);
    }

    50% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    100% {
        -webkit-transform: translateY(3.5%);
        transform: translateY(3.5%);
    }
}

@keyframes AniFloat {
    0% {
        -webkit-transform: translateY(3.5%);
        transform: translateY(3.5%);
    }

    50% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }

    100% {
        -webkit-transform: translateY(3.5%);
        transform: translateY(3.5%);
    }
}

@-webkit-keyframes bouncy {
    0% {
        -webkit-transform: scaleY(1) translateY(0px);
        transform: scaleY(1) translateY(0px);
    }

    25% {
        -webkit-transform: scaleY(0.5) translateY(20px);
        transform: scaleY(0.5) translateY(20px);
    }

    50% {
        -webkit-transform: scaleY(1.2) translateY(-20px);
        transform: scaleY(1.2) translateY(-20px);
    }

    75% {
        -webkit-transform: scaleY(0.8) translateY(10px);
        transform: scaleY(0.8) translateY(10px);
    }

    100% {
        -webkit-transform: scaleY(1) translateY(0px);
        transform: scaleY(1) translateY(0px);
    }
}

@keyframes bouncy {
    0% {
        -webkit-transform: scaleY(1) translateY(0px);
        transform: scaleY(1) translateY(0px);
    }

    25% {
        -webkit-transform: scaleY(0.5) translateY(20px);
        transform: scaleY(0.5) translateY(20px);
    }

    50% {
        -webkit-transform: scaleY(1.2) translateY(-20px);
        transform: scaleY(1.2) translateY(-20px);
    }

    75% {
        -webkit-transform: scaleY(0.8) translateY(10px);
        transform: scaleY(0.8) translateY(10px);
    }

    100% {
        -webkit-transform: scaleY(1) translateY(0px);
        transform: scaleY(1) translateY(0px);
    }
}



img {
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

figure {
    line-height: 0;
}

#deHatch {
    overflow: hidden;
}



#deHatch .tab {
    font-family: arboria, sans-serif;
    position: relative;
}

#deHatch .tab .msi__container {
    padding: 0 0px;
}

#deHatch .tab__lucky {
    display: none;
}

#deHatch .tab__gift {
    display: none;
}

#deHatch .tab__title {

    color: #000000;
    z-index: 20;
    font-size: var(--mainTxt);
    padding: 10px 0px;
    border-radius: 10px;
    width: 80%;
    margin: auto;
    text-align: center;
    position: relative;
    margin-top: 5%;
}

#deHatch .tab__title::before {
    content: "[";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 2vw;
}

#deHatch .tab__title::after {
    content: "]";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 2vw;
}

#deHatch .tab__subtitle {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    border: 2px solid #e5e5e5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.5);
    width: 80%;
    margin: 3% auto;
    font-size: var(--mainTxt);
}

#deHatch .tab__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: transparent;
    padding: 30px 0px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

#deHatch .tab__flex--active {
    display: none;
}

#deHatch .tab__flex--active .tab__flexBox {
    margin: 0;
    width: calc(100% / 3);
}

#deHatch .tab__flex--active .tab__flexBoxInside-pic {
    display: none;
    cursor: pointer;
}

#deHatch .tab__flex--active .tab__flexBox-icon {
    display: none;
}

#deHatch .tab__flexMobile {
    display: none;
    position: fixed;
    top: 0;
    z-index: 100;
    padding: 0;
    background-color: transparent;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

#deHatch .tab__flexMobile--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#deHatch .tab__flexMobileBox {
    margin: 0;
    width: calc(100% / 2);
    background-color: #272727;
    border-left: 2px solid #ffffff;
}


#deHatch .tab__flexMobileBox--color {
    background-color: #7f7979;
}

#deHatch .tab__flexBox {
    position: relative;
    width: 48%;
    margin: 0 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

#deHatch .tab__flexBox-icon {
    position: absolute;
    top: unset;
    bottom: -20px;
    left: 50%;
    right: unset;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 10;
    width: 55px;
    opacity: 0;
    -webkit-transition: 0.1s all ease-in;
    transition: 0.1s all ease-in;
}

#deHatch .tab__flexBox-icon2 {
    position: absolute;
    top: unset;
    bottom: -98px;
    left: 50%;
    right: unset;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 10;
    width: 100px;
    opacity: 0;
    -webkit-transition: 0.1s all ease-in;
    transition: 0.1s all ease-in;
}

#deHatch .tab .select .tab__flexBox-icon2 {
    opacity: 0;
}

#deHatch .tab .select .tab__flexBox-icon {
    opacity: 1;
}

#deHatch .tab .select .tab__flexBox {
    -webkit-filter: drop-shadow(0 0 10px #5a5a5a);
    filter: drop-shadow(0 0 10px #5a5a5a);
}

#deHatch .tab__flexBoxInside {
    background-color: #fff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: 0.1s all ease-in;
    transition: 0.1s all ease-in;
    z-index: 50;
}

#deHatch .tab__flexBoxInside-pic {
    -webkit-transition: 0.1s all ease-in;
    transition: 0.1s all ease-in;
    cursor: pointer;
}

#deHatch .tab__flexBoxInside:hover .tab__flexBoxInside-pic {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: 0.1s cubic-bezier(0, 0.71, 1, 0.93);
    transition: 0.1s cubic-bezier(0, 0.71, 1, 0.93);
}

#deHatch .tab__flexBoxInside:hover .tab__label {
    /* background-color: transparent; */
}

#deHatch .tab__flexBoxInside--active {
    border-radius: 0;
    background-color: #272727;
    color: #fff;
}

#deHatch .tab__flexBoxInside-mobile {
    border-radius: 0;
    color: #fff;
}

#deHatch .tab__label {
    padding: 5px 5px;
    width: 100%;
    position: relative;
    bottom: 0;
    min-height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.1s all ease-in;
    transition: 0.1s all ease-in;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#deHatch .tab__label p {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 5px;
    display: block;
    text-align: center;
}

#deHatch .tab__label p span {
    font-size: 14px;
    display: none;
}

@media (min-width: 996px) {
    #deHatch .kv__text {
        position: absolute;
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        margin: auto;
        text-align: center;
    }

    #deHatch .kv__textbox {
        position: relative;
    }

    #deHatch .kv__textbox-a01 {
        animation: kv-a01 0.5s ease-in-out 1;
    }

    #deHatch .kv__textbox-a02 {
        margin-left: 24%;
        width: 26vw;
        animation: kv-a02 0.5s ease-in-out 1 0.05s;
    }

    #deHatch .kv__textbox-a03 {
        width: 3.5vw;
        margin-top: -56%;
        margin-left: 96%;
        animation: kv-a03 0.8s ease-in-out 1;
    }

    #deHatch .kv__textbox-a04 {
        width: 4.5vw;
        margin-top: 17%;
        margin-left: 2%;
        animation: kv-a04 0.8s ease-in-out 1;
    }

    #deHatch .kv__textbox-a05 {
        width: 6vw;
        margin-top: 12%;
        margin-left: 61%;
        animation: kv-a05 0.8s ease-in-out 1;
    }

    #deHatch .kv__text {
        position: absolute;
        top: 55%;
        left: 69%;
        transform: translate(-50%, -50%);
        width: 24%;
    }

    #deHatch .tab {
        font-family: arboria, sans-serif;
        /* background-color: #eeedec; */
        position: relative;
    }

    #deHatch .tab .msi__container {
        padding: 0 0px;
    }

    #deHatch .tab__lucky {
        display: block;
        position: absolute;
        top: -15%;
        right: 0;
        z-index: 60;
    }

    #deHatch .tab__lucky img {
        width: 170px;
    }

    #deHatch .tab__gift {
        display: block;
        position: absolute;
        top: 5%;
        left: 0;
        z-index: 60;
    }

    #deHatch .tab__gift img {
        width: 150px;
    }

    #deHatch .tab__title {
        /* position: absolute;
    left: 50%;
    top: -22px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); */
        /* background-color: #e3676c; */
        color: #000000;
        z-index: 20;
        font-size: 24px;
        padding: 15px 25px;
        border-radius: 10px;
        margin: 0 auto;
        margin-top: 5%;
        /* left: calc(50% - 250px);
    transform: skewX(-15deg) */
    }

    #deHatch .tab__subtitle {
        color: #ffffff;
        background: #bdbdbd;
        text-align: center;
        padding: 15px;
        border: 2px solid #ffffff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);
        width: 80%;
        margin: 3% auto;
        font-size: 24px;
    }

    /* #deHatch .tab__title span {
    transform: skewX(15deg);
  } */
    #deHatch .tab__flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        /* background-color: #d8cfbe; */
        padding: 60px 100px;
    }

    #deHatch .tab__flexBox {
        position: relative;
        width: 48%;
        margin: 0 20px;
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
    }

    #deHatch .tab__flexBox:hover {
        cursor: pointer;
    }

    #deHatch .tab__flexBox-icon {
        position: absolute;
        top: unset;
        bottom: -39px;
        left: 50%;
        right: unset;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        z-index: 10;
        width: 100px;
        opacity: 0;
        -webkit-transition: 0.1s all ease-in;
        transition: 0.1s all ease-in;
    }

    #deHatch .tab__flexBox:hover .tab__flexBox-icon {
        opacity: 1;
    }

    #deHatch .tab__flexBox:hover .tab__flexBox-icon {
        /* opacity: 0.5; */
    }

    #deHatch .tab__flexBox-icon2 {
        position: absolute;
        top: unset;
        bottom: -98px;
        left: 50%;
        right: unset;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        z-index: 10;
        width: 100px;
        opacity: 0;
        -webkit-transition: 0.1s all ease-in;
        transition: 0.1s all ease-in;
    }

    #deHatch .tab__flexBox:hover .tab__flexBox-icon2 {
        opacity: 1;
    }

    #deHatch .tab .select .tab__flexBox-icon2 {
        opacity: 1;
    }

    #deHatch .tab .select .tab__flexBox-icon {
        opacity: 1;
    }

    #deHatch .tab .select .tab__flexBox {
        -webkit-filter: drop-shadow(0 0 10px #5a5a5a);
        filter: drop-shadow(0 0 10px #5a5a5a);
    }

    #deHatch .tab__flexBoxInside {
        background-color: #fff;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        -webkit-transition: 0.1s all ease-in;
        transition: 0.1s all ease-in;
        z-index: 50;
    }

    #deHatch .tab__flexBoxInside-pic {
        -webkit-transition: 0.1s all ease-in;
        transition: 0.1s all ease-in;
    }

    #deHatch .tab__flexBoxInside:hover .tab__flexBoxInside-pic {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        /* opacity: 0.3; */
        -webkit-transition: 0.1s cubic-bezier(0, 0.71, 1, 0.93);
        transition: 0.1s cubic-bezier(0, 0.71, 1, 0.93);
    }

    #deHatch .tab__flexBoxInside:hover .tab__label {
        /* background-color: transparent; */
    }

    #deHatch .tab__label {
        background-color: #fff;
        padding: 10px 20px 15px;
        width: 100%;
        position: absolute;
        bottom: 0;
        min-height: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: 0.1s all ease-in;
        transition: 0.1s all ease-in;
        /* text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; */
    }

    #deHatch .tab__label p {
        font-size: 20px;
        font-weight: bolder;
        padding-bottom: 8px;
        display: block;
    }

    #deHatch .tab__label p span {
        font-size: 14px;
        display: block;
    }
}

@media (min-width: 1300px) {
    #deHatch .tab__lucky {
        top: -35%;
    }

    #deHatch .tab__lucky img {
        width: 240px;
    }

    #deHatch .tab__gift {
        top: -10%;
    }

    #deHatch .tab__gift img {
        width: 150px;
    }
}

@media (min-width: 1600px) {
    #deHatch .tab__lucky {
        top: -44%;
    }

    #deHatch .tab__lucky img {
        width: 260px;
    }

    #deHatch .tab__gift {
        top: -20%;
    }

    #deHatch .tab__gift img {
        width: 200px;
    }
}


/* #deHatch .sec3 {
  background: url("../images/tab-bg.png") no-repeat bottom center;
  background-size: cover;
} */

#deHatch .sec3__title {
    display: none;
    color: #000;
    font-weight: 700;
    max-width: 1000px;
    margin: auto;
    padding-bottom: 30px;
}

#deHatch .sec3__title--active {
    display: block;
    text-align: center;
}

#deHatch .sec3__intro {
    display: none;
}

#deHatch .sec3__intro--active {
    display: block;
    text-align: center;
}

/* #deHatch .hatch {
    padding-bottom: 40px;
} */

#deHatch .hatch__container {
    max-width: 1600px;
    width: 95%;
    margin: 0 auto;
    padding: 0 25px;
}

#deHatch .hatch__slider {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#deHatch .sec3 .hatch__box {
    position: relative;
    background: url(https://storage-asset.msi.com/event/2024/CND/black-friday-deals/images/pd-bg.jpg);
    background-size: contain;
    z-index: 20;
}

@media (min-width: 960px) {
    #deHatch .sec3 .hatch__box {
        background-size: cover;
    }
    /* #deHatch .hatch {
        padding-bottom: 40px;
    } */
}

#deHatch .sec3 .hatch__box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #fff, transparent);
    z-index: -1;
}

@media (min-width: 960px) {
    #deHatch .sec3 .hatch__box {
        background: linear-gradient(to left, #fff, transparent);
    }
}

#deHatch .hatch__box {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    margin: 20px 0;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;

}

#deHatch .sec4 .hatch__box {
    position: relative;
    width: 100%;
    background-color: transparent;
    margin: 20px 0;
    padding: 10px;
    box-shadow: none;
}

#deHatch .hatch__flexBoxPic {
    width: 100%;
    padding: 10px;
    margin: 0 auto;
}

#deHatch .hatch__flexBoxPic-product {
    text-align: center;
}

#deHatch .sec4 .hatch__flexBoxPic {
    background: #f0e0c7;
        border: 4px solid #b2a38e;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    margin: 10px 4px;
}

#deHatch .sec4 .hatch__flexBoxPic-product {
    margin-bottom: 0%;
    width: 100%;
}

#deHatch .hatch__flexBoxPic-toplogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 10px;
    height: 50px;
}

#deHatch .hatch__flexBoxPic-toplogo img {
    height: 50px;
    margin: 0 5px;
}

#deHatch .hatch__flexBoxPic-bottomlogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 10px;
}

#deHatch .hatch__flexBoxPic-bottomlogo img {
    height: 60px;
}

#deHatch .hatch__flexBoxTxt {
    width: 100%;
}


#deHatch .hatch__flexBoxTxt-title {
    font-weight: bolder;
    font-size: 20px;
}

#deHatch .sec4 .hatch__flexBoxTxt-title {
    text-align: left;
    color: #000000;
}

#deHatch .hatch__flexBoxTxt ul,
#deHatch .hatch__flexBoxTxt li {
    font-size: 18px;
    list-style: disc;
    margin: 3px 0 3px 10px;
}

#deHatch .hatch__flexBoxTxt-note {
    border: 1px solid #4f4f4f;
    padding: 3px 5px;
    margin: 5px 0 0;
    /* display: inline-block; */
    display: none;
}

#deHatch .hatch__flexBoxTxt-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin: 20px 0;
}

#deHatch .hatch__flexBoxTxt-price del {
    display: block;
    font-size: 15px;
    margin-right: 10px;
}

#deHatch .hatch__flexBoxTxt-price span {
    font-weight: bolder;
    font-size: 25px;
    line-height: 1;
}

#deHatch .hatch__buyNowBtn {
    text-align: center;
    cursor: pointer;
    margin-top: 4%;
}

#deHatch .hatch__buyNowBtn-buynow {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bolder;
    padding: 10px 10px;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(180deg, #c04a7a 10%, #cf4c7e 50%, #9f084d 100%);
    margin: 0 7px;
    color: #ffffff;
    border: 4px solid #eb9113;
}

#deHatch .hatch__buyNowBtn-buynow img {
    width: 25px;
    margin-left: 10px;
}

#deHatch .hatch__buyNowBtn-buynow:before,
#deHatch .hatch__buyNowBtn-buynow:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#deHatch .hatch__buyNowBtn-buynow:before {
    height: 0%;
    width: 2px;
}

#deHatch .hatch__buyNowBtn-buynow:after {
    width: 0%;
    height: 2px;
}

#deHatch .hatch__buyNowBtn-buynow:hover {
    background: #ca0c48;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 4px solid #ffd48a;
    color: #ffffff;
}

#deHatch .hatch__buyNowBtn-buynow:hover:before {
    height: 100%;
}

#deHatch .hatch__buyNowBtn-buynow:hover:after {
    width: 100%;
}

#deHatch .hatch__buyNowBtn-buynow span:before {
    width: 2px;
    height: 0%;
}

#deHatch .hatch__buyNowBtn-buynow span:after {
    width: 0%;
    height: 2px;
}

#deHatch .hatch__buyNowBtn-buynow:hover span:before {
    height: 100%;
}

#deHatch .hatch__buyNowBtn-buynow:hover span:after {
    width: 100%;
}

#deHatch .hatch__buyNowBtn-buynow span:before,
#deHatch .hatch__buyNowBtn-buynow span:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#deHatch .hatch__buyNowBtn-buynow--businessMonitor {
    background: #a5a5a5;
}

#deHatch .hatch__buyNowBtn-buynow--businessMonitor:before,
#deHatch .hatch__buyNowBtn-buynow--businessMonitor:after {
    background: #a5a5a5;
}

#deHatch .hatch__buyNowBtn-buynow--businessMonitor:hover span {
    color: #a5a5a5;
}

#deHatch .hatch__buyNowBtn-buynow--businessMonitor span:before,
#deHatch .hatch__buyNowBtn-buynow--businessMonitor span:after {
    background: #a5a5a5;
}

#deHatch .hatch__buyNowBtn-buynow--businessDesktop {
    background: #bed7d1;
}

#deHatch .hatch__buyNowBtn-buynow--businessDesktop:before,
#deHatch .hatch__buyNowBtn-buynow--businessDesktop:after {
    background: #bed7d1;
}

#deHatch .hatch__buyNowBtn-buynow--businessDesktop:hover span {
    color: #bed7d1;
}

#deHatch .hatch__buyNowBtn-buynow--businessDesktop span:before,
#deHatch .hatch__buyNowBtn-buynow--businessDesktop span:after {
    background: #bed7d1;
}

#deHatch .hatch__buyNowBtn-buynow--allinOnePcs {
    background: #bf9e71;
}

#deHatch .hatch__buyNowBtn-buynow--allinOnePcs:before,
#deHatch .hatch__buyNowBtn-buynow--allinOnePcs:after {
    background: #bf9e71;
}

#deHatch .hatch__buyNowBtn-buynow--allinOnePcs:hover span {
    color: #bf9e71;
}

#deHatch .hatch__buyNowBtn-buynow--allinOnePcs span:before,
#deHatch .hatch__buyNowBtn-buynow--allinOnePcs span:after {
    background: #bf9e71;
}

#deHatch .hatch__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 10px;
}

#deHatch .hatch__icon-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 70px;
    width: calc((100%/2) - 20px);
    margin: 10px;
    background: #ffffff8a;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

#deHatch .hatch__tc {
    text-align: center;
}

#deHatch .hatch__tc span {
    text-decoration: underline;
    cursor: pointer;
}

@media (min-width: 996px) {
    #deHatch .hatch {
        /* padding-bottom: 40px; */
    }

    #deHatch .hatch__slider {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #deHatch .hatch__box {
        position: relative;
        width: calc((100% / 2) - 20px);
        margin: 20px 0;
        padding: 10px;
    }

    #deHatch .hatch__box--businessMonitor {
        background-image: url("https://storage-asset.msi.com/event/2023/UK/2023-easter-offer-laptop/images/gaming-bg.jpg");
        background-position: center 0;
        background-repeat: no-repeat;
        background-color: #fff;
        background-size: cover;
    }

    #deHatch .hatch__box--businessDesktop {
        background-image: url("https://storage-asset.msi.com/event/2023/UK/2023-easter-offer-laptop/images/cc-bg.jpg");
        background-position: center 0;
        background-repeat: no-repeat;
        background-color: #fff;
        background-size: cover;
    }

    #deHatch .hatch__box--allinOnePcs {
        background-image: url("https://storage-asset.msi.com/event/2023/UK/2023-easter-offer-laptop/images/bp-bg.jpg");
        background-position: center 0;
        background-repeat: no-repeat;
        background-color: #fff;
        background-size: cover;
    }

    #deHatch .hatch__flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
    }

    

    #deHatch .hatch__flexBoxPic {
        width: 45%;
        padding: 10px;
    }

    #deHatch .sec4 .hatch__flexBoxPic-product {
        margin-bottom: 0%;
        width: 45%;
    }

    #deHatch .sec4 .hatch__flexBoxPic {
        width: calc(100%/2 - 10px);
        padding: 20px;
        margin: 4px;
    }

    #deHatch .hatch__flexBoxPic-toplogo img {
        width: 50px;
        margin: 0 5px;
    }

    #deHatch .hatch__flexBoxPic-bottomlogo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        display: none;
    }

    #deHatch .hatch__flexBoxPic-bottomlogo img {
        height: 60px;
    }

    #deHatch .hatch__flexBoxTxt {
        width: 55%;
        padding-left: 30px;
    }

    #deHatch .hatch__flexBoxTxt-title {
        font-weight: bolder;
        font-size: 21px;
    }

    #deHatch .hatch__flexBoxTxt ul,
    #deHatch .hatch__flexBoxTxt li {
        font-size: 15px;
    }

    #deHatch .hatch__flexBoxTxt-price {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }

    #deHatch .hatch__flexBoxTxt-price del {
        display: block;
        font-size: 16px;
        margin-right: 10px;
    }

    #deHatch .hatch__flexBoxTxt-price span {
        font-weight: bolder;
        font-size: 32px;
    }

    #deHatch .hatch__buyNowBtn {
        text-align: center;
        cursor: pointer;
        margin-top: 4%;
    }



    #deHatch .hatch__buyNowBtn-buynow img {
        width: 25px;
        margin-left: 10px;
    }

    #deHatch .hatch__icon {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-height: 280px;
        overflow-y: auto;
        margin-bottom: 10px;
    }

    #deHatch .hatch__icon-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 70px;
        width: calc((100%/2) - 20px);
        margin: 10px;
        background: #ffffff8a;
        border-radius: 10px;
        overflow: hidden;
        border: 2px solid transparent;
        -webkit-transition: 0.2s;
        transition: 0.2s;
    }

    #deHatch .hatch__tc {
        text-align: center;
    }

    #deHatch .hatch__tc span {
        text-decoration: underline;
        cursor: pointer;
    }
}

@media (min-width: 1600px) {
    #deHatch .hatch__flexBoxTxt-price del {
        font-size: 20px;
    }

    #deHatch .hatch__flexBoxTxt-price span {
        font-size: 40px;
    }
}

#deHatch .popout {
    background: #363129d6;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    opacity: 0;
}

#deHatch .popout__block {
    position: relative;
    max-width: 760px;
    background: #7e7e7e;
    background-size: 100% 100%;
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 10px;
    max-height: 70vh;
    overflow: auto;
}

#deHatch .popout__block-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    cursor: pointer;
}

#deHatch .popout__dm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 30vh;
    padding: 70px 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#deHatch .popout__dm a {
    width: 100%;
    background: #ffffff;
    color: #000000;
    text-align: center;
    border-radius: 5px;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 5px;
}

#deHatch .popout__dm a img {
    height: 50px;
}



#deHatch .subtab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#deHatch .subtab .subtab__itembox {
    margin: 10px;
    position: relative;
    width: auto;
    cursor: pointer;
    border-radius: 8px;
    
}

#deHatch .subtab .subtab__itembox .subtab__text {
  transition: 0.2s;
  padding: 10px 20px;
  text-align: center;
  display: none;
}



#deHatch .secondTab .secondTab__second {
    background: #f9d7e3;
    color: #636363;
}

#deHatch .secondTab .subtab__itembox:hover .subtab__text {
  background: #a07081;
  color: #f9d7e3; 
  border-radius: 8px;
}

#deHatch .secondTab .subtab__itembox .subtab__text.active {
  background: #9a4d69;
  color: #ffffff;
  border-radius: 8px;
}



#deHatch .thirdTab .thirdTab__third.active {
    background: #9a4d69;
    color: #fff;
    
}

#deHatch .thirdTab .thirdTab__third {
    background: #f9d7e3;
    color: #636363;
    transition: 0.2s;
}

#deHatch .thirdTab .thirdTab__third:hover {
    background: #a07081;
    color: #f9d7e3;
    border-radius: 8px;
}



#deHatch .fourthTab .fourthTab__fourth {
    background: #ccc;
    position: relative;
    margin: 1%;
    color: #000;
    padding: 10px 10px;
    text-align: center;
    width: auto;
    min-width: 100px;
    cursor: pointer;
    border-radius: 8px;
}

#deHatch .fourthTab .fourthTab__fourth.active {
    background-color: #47a0c9;
    color: #ffffff;
}

#deHatch .subtab .subtab__itembox .subtab__text {
    padding: 10px 20px;
    text-align: center;
}



#deHatch .subtab__itembox-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}



@media (min-width: 996px) {
    #deHatch .subtab {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    #deHatch .subtab .subtab__itembox {
        margin: 10px;
        position: relative;
        width: calc(100%/7);
    }



    #deHatch .subtab__itembox-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
    }

    #deHatch .fourthTab .fourthTab__fourth {
        background: #ffffff;
        position: relative;
        margin: 1%;
        color: #555555;
        padding: 10px 10px;
        text-align: center;
        width: auto;
        transition: 0.2s;

    }

    #deHatch .fourthTab .fourthTab__fourth:hover {
      background: #9dd5f7;
      color: #fff;
    }
}

@-webkit-keyframes kv-a01 {
    0% {
        transform: translateY(-720px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes kv-a01 {
    0% {
        transform: translateY(-720px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes kv-a02 {
    0% {
        transform: translateY(720px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes kv-a02 {
    0% {
        transform: translateY(720px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes kv-a03 {
    0% {
        transform: translateY(-720px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes kv-a03 {
    0% {
        transform: translateY(-720px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes kv-a04 {
    0% {
        transform: translateY(-720px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes kv-a04 {
    0% {
        transform: translateY(-720px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes kv-a05 {
    0% {
        transform: translateY(720px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes kv-a05 {
    0% {
        transform: translateY(720px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hatch__buynows>p {
    display: none;
}