@font-face {
    font-family: "vivo";
    src: url("../fonts/vivo/vivo-Light.otf") format("truetype");
    font-weight: light;
    font-style: normal;
}

@font-face {
    font-family: "vivo";
    src: url("../fonts/vivo/vivo-LightExtended.otf") format("truetype");
    font-weight: light-extended;
    font-style: normal;
}

@font-face {
    font-family: "vivo";
    src: url("../fonts/vivo/vivo-Regular.otf") format("truetype");
    font-weight: regular;
    font-style: normal;
}

@font-face {
    font-family: "vivo";
    src: url("../fonts/vivo/vivo-RegularExtended.otf") format("truetype");
    font-weight: regular-extended;
    font-style: normal;
}

@font-face {
    font-family: "vivo";
    src: url("../fonts/vivo/vivo-Bold.otf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

/* @font-face {
    font-family: "vivo";
    src: url("../fonts/vivo/vivo-BoldExtended.otf") format("truetype");
    font-weight: bold-extended;
    font-style: normal;
} */

@font-face {
    font-family: "times new roman";
    src: url("../fonts/vivo/times-new -roman.ttf") format("truetype");
    font-weight: regular;
    font-style: normal;
}

:root {
    --bs-dark: #1a1a1a;
    --bs-primary: #415FFF;
    --bs-secondary: #2240db;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'vivo', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    color: #777;
}

.datepicker,
input,
textarea,
select {
    font-family: 'Cambria', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #002257;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    color: inherit;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
}

.custom-select {
    transition: all 200ms ease-out;
    position: relative;
    width: 100%;
}

.custom-select:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 24 24%22%3E%3Cpolygon fill%3D%22%23222222%22 points%3D%2216.5 10 12 16 7.5 10 16.5 10%22%2F%3E%3C%2Fsvg%3E");
    width: 24px;
    height: 24px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.custom-select .custom-select__element {
    transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 0 1px 6px 0 rgba(34, 34, 34, .15);
    display: block;
    font-family: inherit;
    font-size: 16px;
    height: 48px;
    padding-left: 12px;
    padding-right: 36px;
    width: 100%;
    border-radius: 6px;
    background: var(--bs-white);
    border-color: rgba(34, 34, 34, .15);
    border-style: solid;
    border-width: 1px;
    color: #222;
    text-indent: .01px;
    text-overflow: "";
    cursor: pointer;
}

.custom-select .custom-select__element:focus {
    box-shadow: 0 0 0 2px var(--bs-white), 0 0 0 4px #4d6bc6 !important;
    outline: 3px solid rgba(0, 0, 0, 0) !important;
    border-color: #222;
}

.custom-textarea {
    transition: border 200ms ease-out, background 200ms ease-out;
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: var(--bs-white);
    box-shadow: 0 1px 4px 0 rgba(34, 34, 34, .1) inset;
    border-color: rgba(34, 34, 34, .15);
    border-style: solid;
    border-width: 1px;
    border-radius: 6px;
    color: #222;
    display: block;
    font-family: inherit;
    font-size: 16px;
    line-height: 28px;
    height: 48px;
    outline: 3px solid rgba(0, 0, 0, 0);
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    min-width: 0;
    height: auto;
    resize: vertical;
}

.custom-textarea:focus {
    border-color: #222;
    box-shadow: 0 0 0 2px var(--bs-white), 0 0 0 4px #4d6bc6;
}

.custom-input:focus {
    border-color: #222;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #4d6bc6;
}

.custom-input {
    transition: border 200ms ease-out, background 200ms ease-out;
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(34, 34, 34, .1) inset;
    border-color: rgba(34, 34, 34, .15);
    border-style: solid;
    border-width: 1px;
    border-radius: 6px;
    color: #222;
    display: block;
    font-family: inherit;
    font-size: 16px;
    line-height: 28px;
    height: 48px;
    outline: 3px solid rgba(0, 0, 0, 0);
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    min-width: 0;
}

.btn-primary {
    padding: 10px 16px;
    min-width: 200px;
    font-size: 18px;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:focus,
.btn-primary:hover {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

/* ========== Slider Section Css Start ========== */
.slide-image__wrapper {
    position: relative;
}

.slide-image {
    /* position: absolute; */
    /* inset: 0; */
    will-change: transform;
    width: 100%;
    height: auto;
    /* object-fit: cover; */
}

/* ========== Slider Section Css End ========== */

/* ========== Form Section Css Start ========== */
.form-header {
    text-align: center;
    max-width: 700px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto 30px;
}

/* ========== Form Section Css End ========== */

/* ========== Offer Gift Section Css Start ========== */
.offer-gift-section {
    background-color: #FFF0EC;
}

.offer-card {
    background-color: var(--bs-white);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0px 2px rgb(225 31 38 / 30%);
    border: 1px solid rgb(225 31 38 / 20%);
}

.offer-card__header {
    border-bottom: 1px solid #e2e5f1;
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-transform: capitalize;
}

.offer-card__banner {
    position: relative;
}

.offer-card__banner::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.offer-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-carousel .slick-dots {
    display: flex;
    justify-content: center;
}

.offer-carousel .slick-dots li.slick-active button {
    width: 1.5rem;
    background-color: #e11f264d;
}

.offer-carousel .slick-dots li button {
    width: 6px;
    height: 6px;
    background-color: #e11f264d;
    font-size: 0;
    border: none;
    padding: 0;
    margin: 0 5px;
    border-radius: 50rem;
}

.offer-carousel .slick-prev,
.offer-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 2;
    padding: 0;
    display: grid;
    place-items: center;
}

.offer-carousel .slick-prev {
    left: -10px;
}

.offer-carousel .slick-next {
    right: -10px;
}

.offer-card.search-card {
    max-width: 300px;
    width: 100%;
    margin: 15px auto;
}

/* ========== Offer Gift Section Css End ========== */

#trophy-container {
    background: #fff7e4;
    height: 150px;
    width: 150px;
    transform: translateY(-50px);
}

.text-yellow {
    color: #F5AF03;
}

.pic {
    height: 86px;
    width: 86px;
    object-fit: cover;
}

.invitebtn {
    background: linear-gradient(#EC70CE, #E24988);
}

.invitebtn:hover {
    background: linear-gradient(#EC70CE, #E24988);
}

.modal {
    --bs-modal-width: 420px;
}

.icon-height {
    height: 24px;
    width: 24px;
    top: 38px;
}

#invite-btn {
    box-shadow: 3px 4px 20px 0px #ec70ce;
}

.slick-arrow {
    border: none;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    border-radius: 6px;
    color: var(--bs-primary);
}

.slick-prev {
    left: 15px;
}

.slick-next {
    right: 15px;
}

#congratulationModal table * {
    font-size: 12px;
    text-align: start;
}

.frame-wrapper {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    /* overflow: hidden; */
    z-index: 9;
}

.frame-wrapper::before {
    content: '';
    display: block;
    /* padding-top: 100%; */
}

.frame-image {
    position: relative;
    /* inset: 0; */
    z-index: 8;
    pointer-events: none;
}

#upload-demo {
    position: absolute;
    inset: 0;
    z-index: 7;
    height: 100%;
    width: 100%;
}

#upload-demo-i {
    max-width: 350px;
    margin: 0 auto;
    border: 1px solid var(--bs-gray-400);
    position: relative;
    overflow: hidden;
}

#upload-demo-i::before {
    content: '';
    display: block;
    /* padding-top: 100%; */
}

#upload-demo-i img {
    /* position: absolute; */
    inset: 0;
    width: 100%;
    height: 100%;
}

#designs {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.design {
    height: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    outline: 1px solid #ccc;
    opacity: 0.5;
}

.design.active {
    opacity: 1;
    outline: 2px dashed var(--bs-primary);
}

.btn-group-sm>.btn,
.btn-sm {
    padding: 6px 12px;
    font-size: 15px;
}

.cr-boundary {
    width: 100% !important;
    height: 100% !important;
}

.croppie-container .cr-image {
    opacity: 0;
}

.croppie-container .cr-resizer-horisontal::after,
.croppie-container .cr-resizer-vertical::after {
    border-color: transparent;
    background-color: transparent;
}
