*[class^="cw--"],
*[class^="cw--"] * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.fa.fa-times.removeItem {
    border: 1px solid;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 27px;
    text-align: center;
    font-weight: normal;
    float: right;
    cursor: pointer;
}

.cw--loader-wrapper {
    display: none;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 100;
}

.cw--loader-wrapper.cw--active-loader {
    display: block;
}

.cw--option-loader {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #d41581;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 999999999;
}

.cw--option-loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #DDDA00;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.cw--option-loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #d41581;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.cw--stapper {
    padding: 10px;
    max-width: 1000px;
    margin: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.cw--stapper .cw--stepper-box {
    padding: 10px;
    max-width: 25%;
    flex: 1 0 25%;
    justify-content: center;
    display: flex;
}

.cw--stapper .cw--stepper-box .cw--step-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    margin: auto;
}

.cw--stapper .cw--stepper-box .cw--step-title span {
    font-size: 20px;
    font-family: 'Pacifico';
    line-height: 1;
    color: #000;
}

.cw--stapper .cw--stepper-box i {
    font-size: 60px;
    color: #fff;
    display: flex;
    border-radius: 100px;
    line-height: 1;
    border: 3px solid transparent;
    margin-bottom: 20px;
    background-color: #ddda00;
    box-shadow: -14px 13px 22px 0px rgba(0, 0, 0, 0.15);
    transition: background .3s ease-in-out;
}

.cw--stapper .cw--stepper-box:not(.active) .cw--step-title:hover i {
    background-color: #d41581 !important;
    background-image: none;
}

.cw--stapper .cw--stepper-box.active .cw--step-title i {
    background-color: #d41581;
}

.cw--layout {
    display: flex;
    margin-top: 55px;
    flex-wrap: wrap;
}

.cw--layout div[class^="cw--layout-"] {
    max-width: 50%;
    flex: 1 1 50%;
    padding: 0 15px;
}

.cw--option-values {
    list-style: none;
}

.cw--custom-ckbx {
    position: relative;
    margin: 0px;
    margin-left: 22px;
    display: block;
    margin-top: 22px;
    height: calc(100% - 22px);
}

.cw--custom-ckbx input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.cw--custom-ckbx .cw--ckbx-wrap {
    width: 100%;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    word-break: break-word;
    border: 2px solid #d8d8d8;
    padding: 16px;
    border-radius: 10px;
    min-height: ;
    transition: 0.4s;
    position: relative;
    height: 100%;
}


.cw--custom-ckbx > input[type="checkbox"]:checked + .cw--ckbx-wrap {
    border: 2px solid #DDDA00;
    color: #DDDA00;
}

.cw--custom-ckbx:hover .cw--ckbx-wrap {
    box-shadow: 0 23px 50px 10px rgba(0, 0, 0, 0.13);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.cw--card {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* margin-left: auto; */
    padding: 16px;
    align-self: flex-start;
}

.cw--card .cw--card-header {
    display: flex;
    justify-content: ;
    margin-bottom: 15px;
    align-items: center;
    color: #707070;
    flex-direction: column;
}

.cw--card-header > strong {
    font-size: 21px;
    font-weight: 800;
    line-height: 20px;
    color: inherit;
    transition: all ease 300ms;
}

.cw--check-wrap {
    border-radius: 19px;
    background-color: #b2b2b2;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    padding: 10px 18px;
    min-width: 90px;
    cursor: pointer;
    transition: all ease 300ms;
    /*! display: block; */
    /*! width: 100%; */
    margin-left: auto;
    margin-top: 10px;
}

.cw--check-wrap small {
    font-size: 50%;
}

.cw--card-body {
    font-size: 17px;
    font-weight: 300;
    line-height: 20px;
    color: #707070;
}

.cw--card-body p {
    margin-bottom: 15px;
}

.cw--custom-ckbx > input[type="checkbox"]:checked + .cw--ckbx-wrap .cw--check-wrap {
    background-color: #DDDA00;
}

.cw--custom-ckbx > input[type="checkbox"]:checked + .cw--ckbx-wrap .cw--card-header {
    color: #DDDA00;
}

.cw-checked-mark {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 100px;
    width: 48px;
    height: 48px;
    opacity: 0;
}

.cw--custom-ckbx input[type="checkbox"]:checked + .cw--ckbx-wrap .cw-checked-mark {
    opacity: 1;
}

.cw--options {
    margin-top: 20px;
    margin-bottom: 25px;
    float: left;
    width: 100%;
}

.cw--options:after {
    content: '';
    display: table;
    width: 1px;
    clear: both;
}

.cw--option-values {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.cw--option-values > li {
    max-width: 50%;
    flex: 0 0 50%;
    /*! padding: 0 10px; */
    box-sizing: border-box;
    margin-bottom: 20px;
    height: ;
}

.cw--option-title {
    font-size: 65px;
    font-family: 'Pacifico', cursive;
    text-align: center;
    width: 100%;
    line-height: 1.1;
    margin-bottom: 22px;
    color: #d41581;
}

.cw--cart-title {
    font-family: Roboto;
    font-size: 18px;
    color: #fcda47;
    font-weight: bold;
    margin-bottom: 15px;
}

.cw--cart-container {
    position: sticky;
    top: 18px;
    margin-bottom: 30px;
}

.cw--cart-table-wrap {
    max-height: calc(100vh - 250px);
    overflow: hidden;
    overflow-y: auto;
    border: 1px solid #d4d4d4;
}

.cw--cart-item-image img {
    max-width: 100%;
}

.cw--cart-item-image {
    max-width: 120px;
    width: 120px;
}

.cw--cart-item-content {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
}

.cw--cart-table tr + tr > td {
    border-top: 1px solid #d4d4d4;
}

.cw--cart-table {
    border-spacing: 0;
    width: 100%;
}

.cw--cart-subtotal {
    border: 1px solid #d4d4d4;
    border-top-width: 0;
    padding: 20px;
    text-align: center;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.cw--cart-btn {
    text-align: center;
    transition: all .5s;
    border: 0px;
    padding: 15px;
    display: block;
    width: 100%;
    margin-top: 30px;
    background-color: #d41581;
    color: #fff !important;
    border-radius: 5px;
    cursor: pointer;
}

.cw--cart-btn:hover {
    background-color: #ddda00;
}

.cw--item-remove {
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    border: 1px solid currentColor;
    background-color: transparent;
    color: #DDDA00;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
}

@media(max-width:767px) {
    .cw--layout div[class^="cw--layout-"] {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .cw--option-title {
        font-size: 35px;
    }

    .cw--stapper .cw--stepper-box i {
        font-size: 40px;
    }

    .cw--stapper .cw--stepper-box .cw--step-title span {
        font-size: 12px;
    }

    .cw--stapper .cw--stepper-box {
        padding: 5px;
    }

    .cw--layout {
        margin-top: 20px;
    }


    .cw--custom-ckbx[data-ckbox-type="ck-boxed"] .cw--ckbx-wrap,
    .cw--custom-ckbx[data-ckbox-type="ck-borderd"] .cw--ckbx-wrap {
        height: auto;
        min-height: 50px;
    }
}

@media(max-width:480px) {
    .cw--option-values > li {
        max-width: 100%;
        flex: 1 1 100%;
    }
}