:root {
    --primary-color: #004F7B;
    --primary-accent-color: #0080C8;
    --secondary-color: #38B5AA;
    --accent-color: #ED8D1E;
    --grey-color: #888;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100vh;
}

.my-container {
    max-width: 480px;
    width: 100%;
    min-height: 100%;
    margin: auto;
    border: 1px dotted var(--primary-accent-color);
}

#main-carousel,
.carousel-inner {
    height: 100%;
    width: 100%;
}

section {
    min-height: 100vh;
}

#hero-image {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

#brand-image {
    margin: 16px 0 12px;
    width: 100%;
    height: 48px;
    object-fit: contain;
}


.btn-primary {
    background-color: var(--primary-color) !important;
    border: none;
}

.btn-secondary {
    background-color: var(--accent-color) !important;
    border: none;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.border-primary {
    border: 1px solid var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
    border: none;
}

.bg-warning {
    background-color: var(--accent-color) !important;
    border: none;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
    border: none;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
    border: none;
}

.bg-grey {
    background-color: var(--grey-color) !important;
    border: none;
}

.blink_me {
    animation: blinker 2s linear infinite;
}

.thank-you-pop{
	width:100%;
 	padding:20px;
	text-align:center;
}
.thank-you-pop img{
	width:100px;
	height:auto;
	margin:0 auto;
	display:block;
	margin-bottom:25px;
}

.thank-you-pop h1{
	font-size: 42px;
    margin-bottom: 25px;
	color:#5C5C5C;
}
.thank-you-pop p{
	font-size: 20px;
    margin-bottom: 27px;
 	color:#5C5C5C;
}
.thank-you-pop h3.cupon-pop{
	font-size: 25px;
    margin-bottom: 40px;
	color:#222;
	display:inline-block;
	text-align:center;
	padding:10px 20px;
	border:2px dashed #222;
	clear:both;
	font-weight:normal;
}
.thank-you-pop h3.cupon-pop span{
	color:#03A9F4;
}
.thank-you-pop a{
	display: inline-block;
    margin: 0 auto;
    padding: 9px 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    background-color: #8BC34A;
    border-radius: 17px;
}
.thank-you-pop a i{
	margin-right:5px;
	color:#fff;
}
#ignismyModal .modal-header{
    border:0px;
}
.modal-confirm .modal-content {
	padding: 20px;
	border-radius: 5px;
	border: none;
}
.modal-confirm .modal-header {
	border-bottom: none;   
	position: relative;
}
.modal-confirm h4 {
	text-align: center;
	font-size: 26px;
	margin: 30px 0 -15px;
}
.modal-confirm .form-control, .modal-confirm .btn {
	min-height: 40px;
	border-radius: 3px; 
}
.modal-confirm .close {
	position: absolute;
	top: -5px;
	right: -5px;
}	
.modal-confirm .modal-footer {
	border: none;
	text-align: center;
	border-radius: 5px;
	font-size: 13px;
}	
.modal-confirm .icon-box {
	color: #fff;		
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: -70px;
	width: 95px;
	height: 95px;
	border-radius: 50%;
	z-index: 9;
	background: #ef513a;
	padding: 15px;
	text-align: center;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.modal-confirm .icon-box i {
	font-size: 56px;
	position: relative;
	top: 4px;
}
.modal-confirm.modal-dialog {
	margin-top: 80px;
}
.modal-confirm .btn {
	color: #fff;
	border-radius: 4px;
	background: #ef513a;
	text-decoration: none;
	transition: all 0.4s;
	line-height: normal;
	border: none;
}
.modal-confirm .btn:hover, .modal-confirm .btn:focus {
	background: #da2c12;
	outline: none;
}
.trigger-btn {
	display: inline-block;
	margin: 100px auto;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}