@font-face {
    font-family: NuachtSerifHeadline-Regular;
    ;
    src: url('../fonts/Serif Headline/NuachtSerifHeadline-Regular.otf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: NuachtSerifHeadline-Medium;
    src: url('../fonts/Serif Headline/NuachtSerifHeadline-Medium.otf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: NuachtSerifHeadline-Bold;
    src: url('../fonts/Serif Headline/NuachtSerifHeadline-Bold.otf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: NuachtSans-Regular;
    src: url('../fonts/Sans/NuachtSans-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: NuachtSans;
    src: url('../fonts/Sans/NuachtSans-Light.otf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: NuachtSerifText-Medium;
    src: url('../fonts/Serif Text/NuachtSerifText-Medium.otf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: NuachtSerifText-Regular;
    src: url('../fonts/Serif Text/NuachtSerifText-Regular.otf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: NuachtSerifText-Regular;
    src: url('../fonts/Serif Text/NuachtSerifText-Regular.otf') format('truetype');
    font-style: normal;
}

.CameraBorder {
    position: relative;
    border: 3px solid;
    border-image: repeating-linear-gradient(45deg, #00605c 0 10px, transparent 10px 20px) 1;
    margin: 30px;
    padding: 20px;
}

.CameraIcon {
    position: absolute;
    bottom: -20px;
    right: 45px;
    fill: #00605c !important;
}

.ListStyle {
    margin-left: 30px;
}

.tighter-line-height {
    line-height: 1.2; /* You can adjust this to something like 1.1 or 1 depending on your preference */
}

.FormTextSmallBlackTable {
    color: #00605c;
    font-size: 14px;
    font-family: Sky-Text-Light !important;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 5px;
    width: 100%; /* Ensures the parent container takes full width */
    padding: 0;
    margin: 0;
}


    .carousel-indicators .indicator-item {
        width: 30px;
        height: 5px;
        background-color: white;
        border-radius: 3px;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

        .carousel-indicators .indicator-item.active {
            opacity: 1; /* Full opacity for active indicator */
            background-color: #00605c : #00605c; /* Active color (optional, can be white too) */
        }

        .carousel-indicators .indicator-item:hover {
            opacity: 1; /* Full opacity on hover */
        }

    .carousel-indicators .active {
        background-color: #006666; /* Example: blue for active dot */
    }



html {
    font-size: 14px;
}

a {
    color: #00605c !important;
}

.submit-button {
    background-color: #006666; /* Dark teal */
    color: white;
    font-size: 24px;
    font-weight: 500;
    padding: 12px 32px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

    .submit-button:hover {
        background-color: #005555; /* Slightly darker on hover */
    }


.HeaderTextBig {
    color:#00605c;
    font-size: 40px !important;
    font-weight: bold;
    font-family: NuachtSerifHeadline-Regular;
}


.HeaderText {
    color: #00605c;
    font-size: 28px;
    font-family: NuachtSerifHeadline-Regular;
}

    .HeaderText .Homepage {
        font-size: 32px;
    }

    .HeaderText .TextBlue {
        color: #00605c !important;
    }

    .HeaderText .Text#00605c {
        color: #00605c !important;
    }



    .HeaderText .Homepage {
        font-size: 32px;
    }



.btn-primary {
    background-color: #c2185b;
}

    .btn-primary:hover {
        background-color: #a3154a; /* Darker pink on hover */
        transform: scale(1.05); /* Slight scale-up on hover */
    }



.btn {
    background-color: #c2185b;
}

    .btn.white {
        background-color: transparent;
    }

    .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #00605c;
    }

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}


/* Basic card styling */
.product-card {
    position: relative;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .product-card:hover {
        transform: scale(1.05);
    }

    /* Card image styling */
    .product-card img {
        width: 100%;
        object-fit: cover;
    }


.hidden-btn {
    opacity: 0;
    visibility: hidden;
}




/* Card hover effect to show the button */
.product-card:hover .add-to-cart-btn {
    opacity: 1;
    visibility: visible;
}

/* Button styling */
.add-to-cart-btn {
    background-color: #c2185b; /* Deep pink background */
    color: white; /* White text color */
    font-size: 16px; /* Adjust font size */
    font-weight: bold; /* Bold font */
    text-transform: uppercase; /* Uppercase text */
    padding: 12px 30px; /* Padding for the button */
    border: none; /* Remove border */
    border-radius: 8px; /* Rounded corners */
    display: inline-block; /* Inline-block for link */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow */
}

    .add-to-cart-btn:hover {
        background-color: #a3154a; /* Darker pink on hover */
        transform: scale(1.05); /* Slight scale-up on hover */
    }


    .add-to-cart-btn:before {
        content: '\f290'; /* Unicode for shopping bag icon */
        font-family: 'FontAwesome'; /* Make sure FontAwesome is included in your project */
        margin-right: 8px; /* Space between icon and text */
    }

/* Optional: Align the button in the middle */
.product-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    margin-bottom: 10px;
    font-weight: bold;
}


.nav-link {
    font-size: 15px;
    !important;
    font-family: NuachtSerifHeadline-Regular;
    text-decoration: none !important;
    padding: 5px !important;
}

.form-select {
    padding: 0;
    margin: 0;
    font-family: NuachtSerifHeadline-Regular;
    color: #00605c;
    font-size: 20px !important;
}


.ErrorMessage {
    font-size: 25px;
    color: #00605c;
    font-family: Moderat-Regular !important;
}

.ErrorMessageSmall {
    font-size: 20px;
    color: #00605c;
    font-family: Moderat-Regular !important;
}



.BannerImage {
    border-radius: 20px 20px 20px 20px;
}


.form-control {
    border-color: #00605c !important;
    height: auto !important;
    padding: 8px 12px !important;
    font-size: 20px !important;
    border-radius: 10px 10px 10px 10px !important;
}

.FormInPut {
    margin-top: 10px;
}


.NoPadding {
    padding: 0px !important;
    margin: 0px !important;
}

.textTandC {
    color: #00605c;
    font-size: 16px;
    font-family: NuachtSerifHeadline-Regular;
    font-weight: 400;
}


.textTandCHeader {
    color: #00605c;
    font-size: 16px;
    font-family: NuachtSerifHeadline-Regular;
    font-weight: bold;
}

.FormText1 {
    color: #00605c font-size: 20px;
    font-family: NuachtSerifHeadline-Regular;
}

.FormText1Bold {
    color: #00605c;
    font-size: 20px;
    font-weight:bold;
    font-family: NuachtSerifHeadline-Regular;

}

.FormText2 {
    color: #00605c;
    font-size: 22px;
    font-family: NuachtSerifHeadline-Regular;
    font-weight:bold;
}

.txtredHeader {
    font-size: 45px;
    color: #00605c;
    font-family: Moderat-Regular !important;
}

.txtredMediam {
    font-size: 25px;
    color: #00605c;
    font-family: Moderat-Regular !important;
}

.ddlCinema {
    font-size: 20px;
    color: #00605c;
    font-weight: 100;
}

.btnClaimNow {
    background: url(../images/Claim.png) no-repeat;
    cursor: pointer;
    width: 91px;
    height: 39px;
    border: none;
}


.btnRegisterNow {
    background: url(../images/Register.png) no-repeat;
    cursor: pointer;
    width: 130px;
    height: 39px;
    border: none;
}


.footerText {
    padding: 0;
    margin: 0;
    color: #00605c;
    font-size: 12px;
    font-family: NuachtSerifHeadline-Regular;
}


.home-blank-spacer {
    height: 10%;
}

body {
    color: #7A7A7A;
}



* {
    padding: 0;
    margin: 0;
    font-size:16px;
    font-family: NuachtSerifHeadline-Regular;
    color: #00605c;
}


html, body {
    height: 100%;
}


/*ie fix*/
.img-responsive {
    width: auto !important;
    height: auto !important;
}

.general-bold {
    font-weight: bold;
    font-size: xx-large;
}

.general-gray-bold {
    font-weight: bold;
    font-size: 3.8em;
    color: #00605c;
    margin: 0 0 20px -10px;
}

.general-gray-bold {
    font-weight: bold;
    font-size: 2.8em;
    color: #00605c;
    margin: 0 0 20px -10px;
}


.Litext {
    font-size: 16px;
    color: #00605c;
    font-weight: 100;
}

.LiSpecial {
    margin-bottom: 15px;
}

    .LiSpecial ol li {
        margin-bottom: 15px;
        font-weight: bold;
    }

.LiJust {
    text-align: justify;
}


/*#region reward2voucher*/
.hilife-heading-text {
    position: relative;
    text-align: left;
    font-weight: bold;
    font-size: 1.4em;
    /*top:30px;*/
    color: #545454;
    /*color: #A8A8A8;*/
}

.hilifeclaimbuttonanchor {
    background: url(../images/Submit-Now.png) no-repeat;
    width: 246px;
    height: 30px;
    border: none;
    cursor: pointer;
}

.printNow {
    background: url(../images/Print.png) no-repeat;
    width: 130px;
    height: 38px;
    border: none;
    cursor: pointer;
}

.text {
    font-size: 1.3em;
    margin-left: 15px;
}


    .text li {
        font-size: .9em;
        font-weight: bold;
        margin: 0 0 10px 20px;
    }

.lineSpace {
    margin-bottom: 20px;
}


/*.lineSpace
{
	border: 1px solid #ed7700;
	margin-bottom:20px;
}*/

.location {
    font-size: 1.1em;
    font-weight: bold;
}

.Section {
    padding-bottom: 15px;
}

/*#endregion reward2voucher*/

/*#region homepage */

.home-tickbox-text {
}

.homepaddingrow {
    height: 5px;
}

.home-enter-textbox {
    width: 100%;
}

.home-enter-detail-label {
    font-size: .9em;
    font-weight: bold !important;
    padding-left: 0px !important;
}

.home-orange-bar-footer {
    height: 5px;
    background-color: #ed7700;
    margin-top: 10px;
}

.home-gray-bar-footer {
    height: 5px;
    background-color: #005264;
    margin-top: 10px;
}

.home-white-bar-Header {
    height: 15px;
    background-color: #ffffff;
    margin-top: 10px;
}


.home-header-image-small {
    display: none !important;
}

.home-header-image-large {
    display: block !important;
}

#wrap {
    min-height: 100%;
    width: 100% !important;
}

#wrap {
    /*background: url(../images/Background-tile1a.gif);*/
    background-color: #ffffff;
}

#main {
    overflow: auto;
    /*padding-bottom: 165px;*/
    padding-bottom: 10px;
}


/*Opera Fix*/
body:before {
    content: "";
    height: 100%;
    float: left;
    width: 0;
    margin-top: -32767px;
    /;
}

form {
    height: 100%;
}


.home_igb_logo_top_wrap {
    text-align: center;
    position: relative;
    top: 20px;
    /*width:422px;
    height: 294px;*/
    height: 15%;
    overflow: hidden;
    margin: 0 auto;
}


.home_igb_logo_top {
    /*width:100%;*/
    margin-left: auto;
    margin-right: auto;
    /*width:316.5px;
    height: 220.5px;*/
}

.home_thank_you {
    position: relative;
    text-align: center;
    font-family: NuachtSerifHeadline-Regular;
    font-size: 72px;
    top: 30px;
    color: #A39161;
}

.home_body_text_bkg {
    /*background-color:#efeeec;*/
    background-color: white;
}

.choosereward_body_text_bkg {
    background-color: #efeeec;
}

.home_body_text_wrap {
    text-align: center;
    width: 450px;
    position: relative;
    top: 20px;
    margin: auto;
}

.home_body_text {
    padding: 10px 0px 10px 0px;
    margin-left: auto;
    margin-right: auto;
    color: #505050;
    /*font-family: Frutiger;*/
    font-family: NuachtSerifHeadline-Regular;
    font-size: 22px;
    /*font-weight: bold;*/
}

.homeclaimbuttonanchor_BKP {
    position: absolute;
    top: 457px;
    left: 50%;
    margin-left: 100px; /* how far from the center to the left */
    background: url(../images/Claim_Now.gif) no-repeat;
    cursor: pointer;
    width: 158px;
    height: 39px;
    border: none;
}

.submit_preloader_holder {
    position: relative;
    top: 10px;
    left: 50%;
    margin-left: 260px;
}

.homeclaimbuttonanchor {
    /*display:inline-block;*/
    /*display: inline;
    vertical-align: bottom;
    position: relative;*/
    /*top: 23px;*/
    /*left: 50%;*/
    /*margin-left: 10px;*/ /* how far from the center to the left */
    border-style: none;
    border-color: inherit;
    border-width: medium;
    background: url('../images/SuperValu_Button_Choose.png') no-repeat;
    width: 312px;
    cursor: pointer;
    /*margin-top: 20px;*/
}

.homeentercodebox {
    width: 560px;
    height: 50px;
    margin: 0 auto;
    cursor: pointer;
    vertical-align: middle;
    padding-left: 10px;
    /*display:inline;*/
    /*position: relative;*/
    /*top: -10px;*/
    /*left: 50%;
    margin-left: -540px;*/ /* how far from the center to the left */
    /*background-color:white;
    
    cursor: pointer;
    width: 350px;
    height: 39px;
    font-size: 20px;
    padding-left:10px;*/
}

.homeentercodeTextbox {
    color: #00605c;
    font-weight: bold;
    width: 350px;
    height: 39px;
    border: none;
    font-size: 18px;
    padding-left: 10px;
    /*margin-top: 20px;*/
    border: solid 1px #f58320;
}

.homeentercodeTextboxActive {
    color: #a1a1a1;
    font-weight: bold;
    width: 350px;
    height: 39px;
    border: none;
    font-size: 18px;
    padding-left: 10px;
    /*margin-top: 20px;*/
    border: solid 1px #f58320;
}

.homeentercodeTextboxError {
    color: #C8102E;
    font-weight: bold;
    width: 350px;
    height: 39px;
    border: none;
    font-size: 18px;
    padding-left: 10px;
    /*margin-top: 20px;*/
    border: solid 1px #f58320;
}

.termsbutton {
    display: block;
    margin: 0 auto;
    padding: 10px 0px 10px 0px;
}
/*.termsbutton{
    display: inline-block;
}
.termsbutton_Small{
    display: none;
}*/
.acceptedtermstickboxerror {
    font-size: 14px;
    color: #C8102E;
    font-weight: bold;
}

.home_termsbutton {
    display: inline-block;
}

.home_termsbutton_Small {
    display: none;
}

#hometermsanchor {
    display: inline;
    /*position: relative;*/
    /*top:20px;*/
    /*left: 50%;
    margin-left: 150px;*/
    /*position: absolute;
    top: 490px;
    left: 50%;
    margin-left: 370px;*/ /* how far from the center to the left */
}

#hometermstickboxanchor {
    position: relative;
    /*top: 20px;*/
    /*left: 47%;
    margin-left: -170px;*/ /* how far from the center to the left */
    width: 420px;
    margin: 0 auto;
    padding-left: 30px;
}

    #hometermstickboxanchor label {
        vertical-align: text-bottom;
        font-family: NuachtSerifHeadline-Regular;
    }

    #hometermstickboxanchor input {
        margin-right: 5px;
        margin-top: 5px;
    }

.hometermstickbox {
    /*width:50px;
    height: 50px;*/
    /*font-size: 16px;
    font-weight: bold;*/
    color: #505050;
    padding-bottom: 5px !important;
    width: 20px !important;
    height: 20px !important;
}


.footer-image-large {
    display: block;
}

.footer-image-medium {
    display: none;
}

.footer-image-small {
    display: none;
}

.footer-image-v-small {
    display: none;
}
/*#endregion homepage */


/*#region terms*/
.terms-subheading-orange {
    margin-top: 5px;
    font-weight: bold;
    font-size: 1.3em;
    color: #ed7700;
}

.terms-subheading-#00605c {
    margin-top: 5px;
    font-weight: bold;
    font-size: 1.3em;
    color: #00605c;
}

.terms-subheading {
    font-weight: bold;
    font-size: 1.1em;
}

.termsbackbutton {
    margin: 0 auto;
    background: url(../images/Back-Grey.gif) no-repeat;
    width: 94px;
    height: 38px;
    border: none;
    cursor: pointer;
}
/*#endregion terms*/


/*#region internalchoosereward */
.vcenter {
    /*display: inline-block;
    vertical-align: middle;
    float: none;*/
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.vertical-align {
    display: flex;
    align-items: center;
}

.choosereward-header {
    font-weight: bold;
    font-size: xx-large;
    color: #ed7700;
    margin-top: 5px;
    margin-bottom: 15px;
    font-style: italic;
}


.choosereward_external_wrap {
    width: 960px;
    margin: 0 auto;
}

#chooserewardtermsanchor {
    position: relative;
    /*top: 45px;
    left: 50%;
    margin-left: 370px;*/ /* how far from the center to the left */
}

.home-heading-text {
    position: relative;
    text-align: left;
    font-weight: bold;
    font-size: 1.8em;
    /*top:30px;*/
    color: #545454;
    /*color: #A8A8A8;*/
}

.choosereward_body_text_wrap {
    text-align: center;
    width: 65%;
    position: relative;
    /*top: 20px;*/
    margin: auto;
    padding-bottom: 10px;
}

.choosereward_rewards_wrap {
    width: 900px;
    text-align: justify;
    /*margin-left:30px;
    margin-right:30px;*/
    position: relative;
    top: 30px;
}

.choosereward_link_text {
    color: #505050;
    font-family: NuachtSerifHeadline-Regular;
    font-size: 18px;
    width: 221px;
    /*width:50%;*/
    text-align: center;
    display: block;
    margin: 0 auto;
}

.choosereward_rewards_wrap:after {
    content: '';
    width: 100%; /* Ensures there are at least 2 lines of text, so justification works */
    display: inline-block;
}

.choosereward_details_item1 {
    border-style: none;
    width: 100%;
    /*height: 147px;*/
    /*display: inline-block;*/
    display: block;
    margin: 0 auto;
    padding-bottom: 5px;
    padding-top: 5px;
}

.choosereward_details_item2 {
    border-style: none;
    width: 100%;
    /*height: 147px;*/
    display: block;
    margin: 0 auto;
    padding-bottom: 5px;
    padding-top: 5px;
}

.choosereward_details_item3 {
    border-style: none;
    width: 100%;
    /*height: 147px;*/
    display: block;
    margin: 0 auto;
    padding-bottom: 5px;
    padding-top: 5px;
}

.choosereward_reward_link {
    margin: auto;
}

.choosereward_reward_link_small {
    margin: auto;
    display: none;
}

.choosereward_body_text {
    padding: 30px 0px 30px 0px;
    text-align: left;
    /*margin-left: auto;
    margin-right: auto;*/
    color: #505050;
    /*font-family: Frutiger;*/
    font-family: NuachtSerifHeadline-Regular;
    font-size: large;
    /*font-weight: bold;*/
}
/*#endregion choosereward*/

/*#region Reward1*/
.reward_redeemButton {
    border-style: none;
    border-color: inherit;
    border-width: medium;
    background: url('../images/SuperValu_Button_Redeem.png');
    width: 251px;
    height: 38px;
    cursor: pointer;
    /*margin:15px auto;*/
    /*display:block;*/
}

.reward1_redeem_anchor {
    position: relative;
    /*top: 1404px;
    left: 50%;
    margin-left: -126px;*/ /* how far from the center to the left */
}

.GrayBox {
    background: white;
    border: 2px solid #005264;
    color: #005264;
    padding: 5px;
    margin: 20px 0 40px 0;
}

.CountyHead {
    font-weight: bold;
}

.Section {
    margin-bottom: 15px;
}

.CountyText li {
    margin-left: 15px;
}

.OrangeHead {
    font-weight: bold;
    font-size: 1.2em;
    color: #ed7700;
}

.GrayLine {
    margin: 20px 0 20px 0;
    border-bottom: 1px solid #005264;
}
/*#endregion Reward1*/


.topImages {
    width: 190px;
    height: 168px;
    margin-left: 25px;
    margin-right: 15px;
}

.topMainImage {
    width: 900px;
    height: 200px;
    margin-left: 5px;
    margin-right: 5px;
}

.btnredeemnow {
    display: inline;
    vertical-align: bottom;
    position: relative;
    background: url(../Images/btnredeemnow.png) no-repeat;
    width: 123px;
    height: 39px;
    border: none;
    cursor: pointer;
}

.txtredS {
    font-size: 20px;
    color: #00605c;
}

.txtredLarge {
    font-size: 60px;
    color: #ec2a24;
    font-weight: 700;
}

.txtredSmall {
    font-size: 15px !important;
    color: #ec2a24;
    font-weight: 700;
}


.red {
    color: #ec2a24;
}

.txtHeading#00605cBold {
    font-size: 28px;
    color: #00605c;
    font-family: NuachtSerifHeadline-Regular;
    font-weight: bold;
}

.txtHeading#00605c1 {
    font-size: 18px;
    color: #00605c;
    font-family: NuachtSerifHeadline-Regular;
}

.txtHeading#00605c3 {
    font-size: 20px;
    color: #00605c;
    font-family: NuachtSerifHeadline-Regular;
}



.txtHeadingGray2 {
    font-size: 24px;
    color: #77787b;
    font-family: NuachtSerifHeadline-Regular;
}

.txtHeadingGray3 {
    font-size: 30px;
    color: #77787b;
    font-family: NuachtSerifHeadline-Regular;
}


.txtredSThin {
    font-size: 20px;
    color: #00605c;
    font-weight: 100;
}

.txt#00605cThin {
    font-size: 20px;
    color: #00605c;
    font-weight: 100;
}

.txtControl {
    font-size: 30px;
    color: #00605c;
    font-weight: 100;
}


.ddlCinema {
    font-size: 20px;
    color: #00605c;
    font-weight: 100;
}


.lineXS {
    height: 15px;
}

.lineS {
    height: 15px;
}

.lineM {
    height: 25px;
}

.lineL {
    height: 30px;
}

.lineXL {
    height: 60px;
}


.btnEnter {
    color: white;
    background-color: #006666;
    font-size: 24px;
    font-family: NuachtSerifHeadline-Regular;
    border-radius: 3px !important;
    width: 35%;
}



.textBoxCode {
    background-color: #006666; /* Dark teal */
    color: white;
    font-size: 24px;
    font-weight: 500;
    padding: 12px 32px;
    border: none;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    width: auto;
    min-width: 300px;
    outline: none;
    transition: background-color 0.3s ease;
}

    .textBoxCode::placeholder {
        color: white;
        opacity: 1; /* Ensure placeholder is visible */
    }

    .textBoxCode:focus {
        background-color: #005555;
    }



.textBoxCodeError {
    color: #C8102E !important;
    font-weight: bold;
    height: 39px;
    width: 100%;
    border: none;
    font-size: 2.1rem !important;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: #C8102E !important;
    border-radius: 2px !important;
    font-family: Moderat-Regular !important;
}

.myimage {
    background: url(../images/MainPageBackground.png) no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: 100%;
    height: 100%;
    max-height: 800px;
    max-width: 1300px;
}

.thankyou {
    font-size: 45px !important;
    font-weight: bold;
    padding: 2px;
    color: #C8102E;
    font-family: NuachtSerifHeadline-Regular;
}

.HeadingSmall {
    font-size: 25px !important;
    padding: 2px;
    color: #C8102E;
}

.HeadingSmallW {
    font-size: 25px !important;
    padding: 2px;
    color: white;
}

.HeadingSmallPrizeName {
    font-size: 20px !important;
    padding: 2px;
    color: #004b24;
}


.Heading {
    font-size: 30px !important;
    font-weight: bold;
    padding: 2px;
    color: #C8102E;
}




#chkaggree {
    width: 25px;
    height: 25px;
    margin: 0px 10px 0px 10px;
}

#chkaggree2 {
    width: 25px;
    height: 25px;
    margin: 0px 10px 0px 10px;
}


#chkPrivacy {
    width: 25px;
    height: 25px;
    margin: 0px 10px 0px 10px;
}



/*  Medium devices (tablets, 768px and up)*/
@media (max-width: 767.98px) {

    a {
        color: #00605c !important;
        font-size:14px;
    }


    .HeaderText {
        color: #00605c;
        font-size: 18px;
        font-family: NuachtSerifHeadline-Regular;
    }

    .carousel-indicators {
        bottom: 0px; /* or any value you want to push it downward */
    }

    .HeaderTextBig {
        color: #00605c;
        font-size: 30px !important;
        font-weight: bold;
        font-family: NuachtSerifHeadline-Regular;
    }


}

/*  Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    /*...*/
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    /*...*/
}

/*  XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    /*...*/
}
