*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #39CCCC;
}

header {
    /*    background: #fff;*/
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: rgb(95, 162, 240);
    background: linear-gradient(19deg, rgba(95, 162, 240, 1) 0%, rgba(177, 110, 190, 1) 45%, rgba(209, 45, 156, 1) 75%);
}

.form-group {
    margin-bottom: 1rem;
}

.check-blk>.pretty.p-default input:checked~.state label:after {
    background-color: #e42526 !important;
}

.check-blk>.pretty .state label:after,
.pretty .state label:before {
    background-color: #fff !important;
}

.check-blk {
    width: 22%;
    margin: 0 auto;
}

/* Header */
.brand-logo {
    display: block;
    margin: 30px auto 0;
    max-width: 25%;
}

@media only screen and (min-width: 768px) {
    .brand-logo {
        max-width: 15%;
    }
}

/* Main */
.showcase {
    position: relative;
    overflow-y: hidden;
    z-index: 100;
}

main {
    position: relative;
    overflow-x: hidden;
    /*background-image: url('img/bg-img.jpg');
    background-position: 20% center;
    background-size: cover;*/
}

.intro-para {
    text-align: center;
    font-size: 20px;
    padding: 25px 0 0
}

.qns-header {
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
    font-weight: 700;
    position: absolute;
    margin: auto;
    top: 3%;
    left: 0;
    right: 0;
    font-size: 18px;
}

@media only screen and (min-width: 768px) {
    .qns-header {
        font-size: 40px;
    }
}

#gift-form {
    margin: 25px 0 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

#gift-form input[type=text] {
    display: block;
    font-size: 20px;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 0 auto 1rem;
    width: 90%;
}

@media only screen and (min-width: 768px) {
    #gift-form input[type=text] {
        width: 75%;
    }
}

.flt-select {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px;
}

/*#duration {
    width: 100%;
    padding: 0;
    margin: 25px 0 15px;
}*/

.gen-btn {
    display: block;
    cursor: pointer;
    border: none;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    border-radius: 35px;
    background: linear-gradient(0deg, rgba(255, 178, 0, 1) 0%, rgba(255, 125, 0, 1) 100%);
    box-shadow: rgba(255, 178, 0, 0.4) 0 2px 4px, rgba(255, 125, 0, 0.3) 0 7px 13px -3px, #ff7d00 0 -3px 0 inset;
    padding: 1rem 2rem;
    margin: 20px auto 20px;
}

.gen-btn:hover {
    box-shadow: #D6D6E7 0 3px 7px inset;
    transform: translateY(2px);
}

.gen-btn:focus {
    box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

/* Gen wrapper */
.gen-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
    visibility: hidden;
    z-index: 9999;
    /* Ensure the modal is above other elements */
    max-height: calc(100% - 20px);
    /* Adjust as needed */
    overflow-y: auto;
    /* Enable vertical scrolling if content exceeds viewport */
    width: 94%;
}

@media only screen and (min-width: 768px) {
    .gen-wrapper {
        width: 60%;
    }
}

/*
 *  Scrollbar
 */

.gen-wrapper::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
}

.gen-wrapper::-webkit-scrollbar {
    width: 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0);
}

.gen-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-image: -webkit-gradient(linear,
        left bottom,
        left top,
        color-stop(0.44, rgb(122, 153, 217)),
        color-stop(0.72, rgb(73, 125, 189)),
        color-stop(0.86, rgb(28, 58, 148)));
}

#close-button {
    position: absolute;
    display: block;
    top: 5px;
    right: 5px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 6px solid #000;
    background: #fff;
    text-align: center;
}

#close-button i {
    color: #000;
    font-size: 25px;
    margin: 1px 0 0;
}

.output {
    display: none;
    font-size: 14px;
    padding: 10px 20px;
}

@media only screen and (min-width: 768px) {
    .output {
        padding: 10px 25px;
    }
}

.output.active {
    display: block;
}

.output-header {
    display: block;
    font-weight: 700;
    font-size: 18px;
}

@media only screen and (min-width: 768px) {
    .output-header {
        font-size: 25px;
    }
}

.activity-list {
    padding: 0;
}

.activity-list li {
    font-weight: 400;
    font-size: 15px;
    margin: 15px 0 0;
}

.msg {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 1rem;
}

.globe {
    background-image: url('img/footer-img.jpg');
    background-position: center center;
    background-size: cover;
}

.plan-bg {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
}

.plan-bg:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, 0.35), rgba(0, 0, 0, 0.35));
    background: -webkit-radial-gradient(rgba(20, 20, 20, 0.8),
        rgba(0, 0, 0, 0.35));
}

/* Radio */
.custom-radio-button__container {
    display: block;
    margin: 18px 0 0;
}

.custom-radio-button__container input[type="radio"] {
    display: none;
}

.custom-radio-button {
    position: relative;
    display: table;
    /*align-items: center;
      justify-content: center;*/
    border: none;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(249, 249, 249, 1) 0%, rgba(234, 234, 234, 1) 100%);
    width: 100%;
    border-radius: 35px;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    height: 60px;
}

.custom-radio-button:before {
    position: absolute;
    font-family: 'fontAwesome';
    font-weight: 700;
    content: "\f08a";
    color: #1a95d3;
    display: block;
    height: 20px;
    width: 20px;
    font-size: 25px;
    right: 20px;
    top: 10px;
    display: none;
}

@media only screen and (min-width: 768px) {
    .custom-radio-button:before {
        display: block;
    }
}

.custom-radio-button h3 {
    display: table-cell;
    vertical-align: middle;
    color: #630460;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    font-size: 15px;
}

@media only screen and (min-width: 768px) {
    .custom-radio-button h3 {
        font-size: 16px;
    }
}

.custom-radio-button__container input[type="radio"]:checked+.custom-radio-button {
    box-shadow: #D6D6E7 0 3px 7px inset;
    transform: translateY(2px);
    background: linear-gradient(180deg, #f6d365 0%, #fda085 100%);
}

.custom-radio-button__container input[type="radio"]:checked+.custom-radio-button h3 {
    color: #000;
    font-weight: 700;
}

.custom-radio-button__container input[type="radio"]:hover+.custom-radio-button {
    box-shadow: #D6D6E7 0 3px 7px inset;
    transform: translateY(2px);
}

.custom-radio-button__container input[type="radio"]:focus+.custom-radio-button {
    box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.custom-radio-button img {
    display: block;
    margin: 0 auto;
    max-width: 60%;
}

@media only screen and (min-width: 768px) {
    .custom-radio-button img {
        max-width: 40%;
    }
}

.disclaimer-header {
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    margin: 5px 0 0;
}

.disclaimer {
    font-size: 14px;
}

/* New */
#brand,
#campaign-product {
    margin: 18px 0 0;
    width: 100%;
}

#brand {
    padding: 10px;
}

#campaign-product {
    padding: 15px;
}

#gift-form {
    margin: 25px 0 30px;
}

.container-fluid.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.intro-header {
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: 23px;
    margin: 0;
}

.title-header {
    position: relative;
    color: #00ff00;
    text-align: center;
    font-weight: 600;
    margin: 0;
    padding: 20px 0 90px;
    font-size: 27px;
}

@media only screen and (min-width: 768px) {
    .title-header {
        padding: 20px 0 25px;
        font-size: 50px;
    }
}

.title-header:before {
    content: "";
    position: absolute;
    background-image: url("img/gift-box.png");
    height: 70px;
    width: 70px;
    margin: auto;
    top: 55px;
    left: 0;
    right: 0;
}

@media only screen and (min-width: 768px) {
    .title-header:before {
        top: 12px;
        left: auto;
        right: 29%;
    }
}

.header-blk {
    background-color: #630460;
}

.intro-blk {
    /*    background-color: #ffc628;*/
}

.intro-wrapper {
    position: relative;
    background-color: #000;
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
    padding: 15px 0;
    margin: 0;
}

/* Gift  */
.selected-gift {
    position: relative;
}

.selected-gift h3 {
    font-weight: 700;
    margin: 0;
    font-size: 18px;
}

@media only screen and (min-width: 768px) {
    .selected-gift h3 {
        font-size: 25px;
    }
}

.selected-gift h4 {
    font-weight: 600;
    margin: 10px 0 0;
    font-size: 16px;
}

@media only screen and (min-width: 768px) {
    .selected-gift h4 {
        font-size: 20px;
    }
}

.selected-gift p {
    font-weight: 400;
    font-size: 15px;
    margin: 10px 0 0;
}

.selected-gift img {
    display: block;
    max-width: 100%;
    margin: 20px auto;
    border-radius: 25px;
}

.selected-gift a {
    display: block;
    text-decoration: none;
}

/*.selected-gift button {
    display: block;
    font-size: 15px;
    font-family: Arial;
    width: 140px;
    height: 50px;
    border-width: 1px;
    color: #fff;
    border-color: #d02718;
    font-weight: bold;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    box-shadow: 3px 4px 0px 0px #8a2a21;
    text-shadow: 0px 1px 0px #810e05;
    background: linear-gradient(#c62d1f, #f24437);
    margin: 5px auto 20px;
}

.selected-gift button:hover {
    background: linear-gradient(#f24437, #c62d1f);
}*/

.selected-gift button {
    display: block;
    cursor: pointer;
    border: none;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    border-radius: 35px;
    background: linear-gradient(0deg, rgba(255, 178, 0, 1) 0%, rgba(255, 125, 0, 1) 100%);
    box-shadow: rgba(255, 178, 0, 0.4) 0 2px 4px, rgba(255, 125, 0, 0.3) 0 7px 13px -3px, #ff7d00 0 -3px 0 inset;
    padding: 1rem 2rem;
    margin: 20px auto 20px;
}

.selected-gift button:hover {
    box-shadow: #D6D6E7 0 3px 7px inset;
    transform: translateY(2px);
}

.selected-gift button:focus {
    box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

/* Qns Visual */
.qns-visual-blk {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
    height: 195px;
}

@media only screen and (min-width: 768px) {
    .qns-visual-blk {
        background-size: cover;
        height: 430px;
    }
}

.qns-visual-blk:before {
    position: absolute;
    color: #fff;
    height: 100px;
    width: 100px;
    border-radius: 100px;
    text-align: right;
    font-weight: 600;
    top: 0;
    left: -45px;
    padding: 10px 20px 0 0;
    font-size: 50px;
}

.sp-occ {
    background-image: url('img/occasion-qns-img.jpg');
}

.sp-occ:before {
    content: "1";
    background-color: #ff0000;
}

.reci-gift {
    background-image: url('img/recipient-qns-img.jpg');
}

.reci-gift:before {
    content: "2";
    background-color: #d800ff;
}

.trait-like {
    background-image: url('img/trait-qns-img.jpg');
}

.trait-like:before {
    content: "3";
    background-color: #ffa200;
}

/* Additional gifts */
.agl-blk {
    text-align: center;
}

.agl-blk h3 {
    border-top: 5px solid #f9a431;
    text-align: left;
    margin: 25px 0 0;
    padding: 10px 0 0;
    font-size: 18px;
}

@media only screen and (min-width: 768px) {
    .agl-blk h3 {
        font-size: 25px;
    }
}

.additional-gifts-list {
    margin: 15px 0 0;
    padding: 0;
}

.additional-gifts-list li {
    display: inline;
    list-style: none;
    float: left;
    margin: 0 0 0 10px;
    width: 30%;
}

@media only screen and (min-width: 768px) {
    .additional-gifts-list li {
        width: 32%;
    }
}

.additional-gifts-list li:first-child {
    margin: 0;
}

.additional-gifts-list img {
    display: block;
    width: 100%;
    border-radius: 25px;
}

.additional-gifts-list span {
    display: block;
    text-align: center;
    font-size: 13px;
}

@media only screen and (min-width: 768px) {
    .additional-gifts-list span {
        font-size: 15px;
    }
}

/* Parsley */
.pal-error-blk {
    text-align: center;
    margin: 30px 0 0;
}

#option__error {
    margin: 20px 0 20px;
}