@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html {
    font-family: 'Roboto', sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html *,
body * {
    font-family: 'Roboto', sans-serif;
}

body {
    margin: 0;
    overflow-x: hidden;
}

/* https://xd.adobe.com/view/477866cb-4807-4042-b81036c-acb70bd1d049-122b/screen/e73ce7f9-73dc-4b3a-8933-918756b2b1a6/specs/ */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
    display: block;
}

main {
    position: relative;
    height: 100vh;
    min-height: 100%;
}

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137254902);
    padding: 14px 30px 14px 80px;
}

.logo {
    max-width: 320px;
    display: inline-block;
}

img {
    max-width: 100%;
}

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

#header ul li {
    display: inline-block;
}

#header ul li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #000000;
    transition: all .3s ease-in-out;
}

#header ul li a:hover,
#header ul li a.active {
    color: #D74000;
    text-decoration: none;
}

/* header */

/* menu */

#header .menu {
    clear: both;
    max-height: 240px;
    transition: all 0.2s ease-out;
    transform: scale(0, 1);
    transform-origin: right;
}

/* menu icon */

#header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 20px 15px 20px;
    position: relative;
    user-select: none;
    margin: 0;
    z-index: 20;
}

#header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 25px;
}

#header .menu-icon .navicon::before,
#header .menu-icon .navicon::after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

#header .menu-icon .navicon::before {
    top: 7px;
}

#header .menu-icon .navicon::after {
    top: -7px;
}

/* menu btn */

#header .menu-btn {
    display: none;
}

#header .menu-btn:checked ~ .menu {
    max-height: 280px;
    transform: scale(1,1);
}


#header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

#header .menu-btn:checked~.menu-icon .navicon::before {
    transform: rotate(-45deg);
}

#header .menu-btn:checked~.menu-icon .navicon::after {
    transform: rotate(45deg);
}

#header .menu-btn:checked~.menu-icon:not(.steps) .navicon::before,
#header .menu-btn:checked~.menu-icon:not(.steps) .navicon::after {
    top: 0;
}

#header{
    flex-wrap: wrap;
    padding: 0;
    box-shadow: none;
    position: fixed;
    top: 0;
    z-index: 5;
    width: 100%;
    background: transparent;

}
.top_header {
    width: 100%;
    background: rgba(255,255,255, 1);
    display: flex;
    justify-content: space-between;
    z-index: 1;
    align-items: center;
    box-shadow: 0 40px 90px #fff inset;
    padding: 6px;
}
/* 48em = 768px */
@media (max-width: 48em) {
    #header {
        
    }
}

@media (max-width: 1024px) {
    .preeheader {
        position: absolute;
        right: 0px;
    }
    #header .centerText {
        position: absolute;
        top: 100%;
        width: 100%;
        background: rgba(255,255,255, 0.1);
        z-index: 1;
        align-items: center;
        box-shadow: 0 40px 90px #fff inset;
        box-shadow: 0 0px 30px #fff inset;
        padding: 8px;
        text-align: center;
        display: flex;
        justify-content: center;
        left: 0;
    }

    #header .menu {
        position: absolute;
        width: 340px;
        top: -5px;
        right: 0;
        background-color: #fff;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 2;
    }

    .menu li {
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease-in;
    }

    #header .menu-btn:checked~.menu li {
        opacity: 1;
        pointer-events: auto;
        box-shadow: 0px -1px 1px rgba(0, 0, 0, 0.1);
    }
    #header .menu li:first-child {
        padding-top: 55px;
    }
    #header .menu-btn:checked ~ .menu::before {
        content: 'Menu';
        position: absolute;
        left: 15px;
        top: 15px;
        color: #292b3c;
        font-size: 18px;
    }
    #header li a {
        display: block;
        padding: 20px 20px;
        border-right: 0px solid #f4f4f4;
        text-decoration: none;
    }

    #header ul li {
        display: block;
    }

    .logo {
        max-width: 200px;
    }

}
@media (min-width: 1025px) {

    #header li {
        float: left;
    }

    #header .menu {
        clear: none;
        float: right;
        max-height: none;

    }

    #header .menu-icon {
        display: none;
    }
}

/* End header */
.landingpage {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom -40px;
    height: calc(100vh - 80px);
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.left_col {
    width: 43%;
    height: 100%;
    padding: 40px 40px 40px 98px;
}

.left_col figure {
    box-shadow: 0px 10px 10px rgba(57, 32, 32, 0.10196078431372549);
    position: relative;
    margin: 0;
    /*  */
    max-width: 88%;
    left: 12%;
}

.left_col figure::before {
    content: "";
    padding-bottom: calc(540 / 450 * 100%);
    /* 5:6 */
    width: 100%;
    display: block;
    background-color: #fff;
}

.left_col figure img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: top;
}

.right_col {
    width: 55%;
    height: 100%;
    padding: 25px 90px 40px 40px;
    position: relative;
    z-index: 1;
}

.right_col .btn_group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.right_col .btn_group button {
    margin: 10px 0;
    display: inline-block;
    min-width: 190px;
}

.right_col figure {
    position: relative;
    height: calc(100vh - 300px);
    max-width: 100%;
    z-index: -1;
    margin: 0;
    text-align: right;
}

.right_col figure img {
    margin-top: -40px;
    object-fit: cover;
    object-position: top;
    height: calc(100% + 40px);
}

.custom-btn {
    height: 45px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.10196078431372549);
    border: 2px solid #00A8E5;
    border-radius: 2px;
    opacity: 1;
    color: #00A8E5;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.custom-btn.orange {
    color: #D74000;
    border: 2px solid #D74000;
}

.custom-btn:hover,
.custom-btn.orange:hover, .modal .custom-btn, .modal .custom-btn.orange {
    color: #fff;
    background: rgba(0, 103, 147, 1);
    background: -moz-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 103, 147, 1)), color-stop(56%, rgba(0, 167, 228, 1)), color-stop(100%, rgba(0, 210, 217, 1)));
    background: -webkit-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
    background: -o-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
    background: -ms-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
    background: linear-gradient(to right, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 56%, rgba(0, 210, 217, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006793', endColorstr='#00d2d9', GradientType=1);


    background: rgba(0, 103, 147, 1);
    background: -moz-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0, 103, 147, 1)), color-stop(64%, rgba(0, 167, 228, 1)), color-stop(100%, rgba(0, 210, 217, 1)));
    background: -webkit-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    background: -o-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    background: -ms-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    background: linear-gradient(to right, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#006793', endColorstr='#00d2d9', GradientType=1);


    border-image-source: -moz-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    border-image-source: -webkit-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    border-image-source: -o-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    border-image-source: -ms-linear-gradient(left, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);
    border-image-source: linear-gradient(to right, rgba(0, 103, 147, 1) 0%, rgba(0, 167, 228, 1) 64%, rgba(0, 210, 217, 1) 100%);

    border-image-slice: 1;
    border-width: 2px;

    border-image-slice: 0;
    border-width: 0px;
    background: #00A8E5;
    color: #ffffff ;
    border-radius:0px;
}

.custom-btn.orange:hover, .modal .custom-btn.orange {
    background: rgba(194, 36, 0, 1);
    background: -moz-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(194, 36, 0, 1)), color-stop(74%, rgba(219, 95, 0, 1)), color-stop(100%, rgba(222, 130, 0, 1)));
    background: -webkit-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    background: -o-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    background: -ms-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    background: linear-gradient(to right, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c22400', endColorstr='#de8200', GradientType=1);


    border-image-source: -moz-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    border-image-source: -webkit-gradient(left top, right top, color-stop(0%, rgba(194, 36, 0, 1)), color-stop(74%, rgba(219, 95, 0, 1)), color-stop(100%, rgba(222, 130, 0, 1)));
    border-image-source: -webkit-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    border-image-source: -o-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    border-image-source: -ms-linear-gradient(left, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);
    border-image-source: linear-gradient(to right, rgba(194, 36, 0, 1) 0%, rgba(219, 95, 0, 1) 74%, rgba(222, 130, 0, 1) 100%);

    background: #d74000 ;
}

.counter_sticker {
    position: absolute;
    width: 68%;
    height: 37%;
    bottom: 18%;
    right: 11%;
    z-index: 1;
    text-align: center;
}

.right_col figure .counter_sticker img {
    object-fit: cover;
    height: 100%;
    margin: 0;
}
/* registration Modal */
.form_modal{
	width: 446px;
}
.body_scroll .modal-body{
	max-height: 65vh;
	overflow-y: scroll;
}
.body_scroll .modal-body form{
	padding: 30px 40px;
}
.body_scroll .modal-header{
	box-shadow: 0px 3px 6px rgb(0 0 0 / 5%);
	padding: 40px 40px;
}
.modal-title {
    font-size: 1em;
}
.body_scroll .modal-content {
	border-radius: 0;
}
.body_scroll .close {
	position: relative;
}
.body_scroll .close span {
    font-size: 0;
}
.body_scroll .close span::after {
    content: "";
    width: 30px;
    height: 2px;
    background: black;
    position: absolute;
    transform: rotate(-45deg);
    top: 20%;
    left: 0;
}
.body_scroll .close span::before {
    content: "";
    width: 30px;
    height: 2px;
    background: black;
    position: absolute;
    transform: rotate(45deg);
    top: 20%;
    left: 0;
}
input, textarea{
	border-radius: 0 !important;
	background: #F8F8F8  !important;
	letter-spacing: 0.16px;
    color: rgb(0 0 0 / 30%);
}
::-webkit-input-placeholder { 
  color: rgb(0 0 0 / 30%) !important;
  letter-spacing: 0.16px !important;
}

:-ms-input-placeholder { 
  color: rgb(0 0 0 / 30%) !important;
  letter-spacing: 0.16px !important;
}

::placeholder {
  color: rgb(0 0 0 / 30%) !important;
  letter-spacing: 0.16px !important;
}
/* End registration Modal */
@media(max-width: 1120px) {
    .landingpage {
        background-position: right bottom;
    }

    .left_col {
        width: 32%;
        padding: 30px;
        margin-top: 25%;
        transform: translateY(-50%);
    }

    .left_col figure {
        max-width: 100%;
        left: 0;
    }

    .right_col figure {
        height: auto;
        max-height: 100%;
        position: absolute;
        text-align: center;
        bottom: 30px;
        right: 50px;
    }

    .right_col figure img {
        width: 100%;
    }

    .right_col,
    .left_col {
        height: auto;
    }

    .counter_sticker {
        width: 80%;
    }

    .right_col figure .counter_sticker img {
        width: auto;
    }

    .right_col .btn_group {
        padding-top: 7vh;
    }
}

@media(max-width: 812px) {
    #header {
    }

    .landingpage {
        background-position: right bottom;
        background-attachment: fixed;
        display: block;
        height: auto;
        min-height: calc(100vh - 72px);
    }

    .left_col,
    .right_col {
        width: 100%;
        padding: 30px;
        margin-top: 0%;
        transform: translateY(-0%);
    }

    .left_col figure {
        max-width: 320px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .right_col figure {
        height: auto;
        position: relative;
        text-align: center;
        bottom: 0px;
        right: 0px;

        max-width: 580px;
        margin: 0 auto;
    }

    .counter_sticker {
        width: 80.5%;
    }

    .right_col figure .counter_sticker img {
        object-fit: contain;
    }

    .right_col .btn_group {
        padding-top: 0vh;
        padding-right: 7vw;
    }

    .logo {
        max-width: 220px;
    }
}

@media screen and (max-width: 480px) {
    .right_col .btn_group {
        padding-right: 0vw;
    }

    .right_col .btn_group button {
        margin: 7px 0;
        min-width: 150px;
        font-size: 14px;
    }

    .left_col figure {
        max-width: 220px;
        max-width: 190px;
    }

    .custom-btn {
        height: 40px;
    }

    .right_col {
        padding-top: 0;
    }
}

@media screen and (orientation:landscape)and (max-height: 415px) {

    /* figure{background-color: red !important;} */
    .landingpage {
        background-position: right top;
        background-size: 200% 300%;
        height: auto;
    }
    .left_col figure {
	    max-width: 240px;
	}
}

@media screen and (min-width: 1640px) {
    .right_col figure {
        height: auto;
        max-height: 100%;
        position: absolute;
        text-align: center;
        bottom: 30px;
        right: 50px;
    }

    .right_col figure img {
        width: 100%;
    }

    .counter_sticker {
        width: 75%;
        right: 14%;
    }

    .right_col .btn_group {
        padding-top: 15vh;
    }
}
@media screen and (min-width: 1920px) and (min-height: 1200px){
    .landingpage {
        background-position: right bottom;
    }
    .left_col figure {
        max-width: 75%;
    }
}
@media screen and (min-width: 1680px) and (min-height: 1050px){
    .landingpage {
        background-position: right bottom;
    }
    .left_col figure {
        max-width: 75%;
    }
}
@media screen and (min-width: 1600px) and (max-height: 900px){
    .right_col figure {
        height: auto;
    }
    .right_col .btn_group {
        margin-top: 20vh;
    }
}
@media screen and (min-width: 1440px) and (max-width: 1441px){
    @media screen and (max-height: 1024px){
        .landingpage {
            background-position: right bottom;
        }
        .right_col figure {
            height: auto;
        }
        .right_col .btn_group {
            margin-top: 20vh;
        }
        .left_col figure {
            max-width: 60%;
        }
    }
    @media screen and (min-height: 820px) and (max-height: 900px){
        .left_col figure {
            max-width: 80%;
        }
    }
    
}
@media screen and (min-width: 1346px) and (max-width: 1368px){
    @media screen and (max-height: 1024px){
        .landingpage {
            background-position: right bottom;
        }
        .right_col figure {
            height: auto;
        }
        .right_col .btn_group {
            margin-top: 10vh;
        }
        .left_col figure {
            /* max-width: 50%; */
        }
    }
    @media screen and (min-height: 960px) and (max-height: 1024px){
        .landingpage {
            background-position: center bottom;
        }
        .right_col figure {
            margin-top: 10vh;
        }
    }
    @media screen and (max-height: 700px){
        .right_col .btn_group {
            margin-top: 0;
        }
        .right_col figure {
            height: calc(100vh - 300px);
        }
        .left_col figure {
            max-width: 75%;
        }
    }
    
}
@media screen and (min-width: 1250px) and (max-width: 1280px){
    @media screen and (min-height: 880px) and (max-height: 950px){
        .landingpage {
            background-position: right bottom;
        }
        .counter_sticker {
            width: 80%;
            height: 29%;
        }
        .right_col .btn_group {
            padding-top: 10vh;
        }
        .right_col figure {
            height: auto;
            padding-top: 10vh;
        }
        .left_col figure {
            max-width: 100%;
            left: 0;
        }
        .left_col {
            width: 32%;
        }
    }
    
}
@media screen and (min-width: 992px) and (max-width: 1025px){
    @media screen and (min-height: 1365px) and (max-height: 1366px){
        .left_col {
            transform: translateY(-0%);
        }
    }
    
}
@media screen and (min-width: 1279px) and (max-width: 1281px){
    @media screen and (max-height: 800px){
    .landingpage {
        background-position: right bottom;
        }
        .right_col figure {
            height: auto;
        }
    }
}
@media screen and (min-width: 955px) and (max-width: 960px){
    @media screen and (min-height: 560px) and (max-height: 600px){
       .left_col {
            width: 43%;
            margin-top: 18%;
        }
    }
}
@media screen and (min-width: 799px) and (max-width: 801px){
    @media screen and (max-height: 1280px){
        .landingpage {
            min-height: calc(100vh - 58px);
        }
    }
}

@media screen and (min-width: 992px) and (max-width: 1025px){
    @media screen and (min-height: 600px) and (max-height: 601px){
        .left_col {
            margin-top: 0;
            transform: translateY(-0%);
        }
        .left_col figure {
            left: 15vh;
        }
        .right_col .btn_group {
            padding-top: 0;
        }
    }
    
}
@media screen and (max-width: 767px){
    .body_scroll .modal-header {
        padding: 30px;
    }
    .body_scroll .modal-body form {
        padding: 30px 30px;
    }
    .form_modal {
        width: auto;
    }
}
/* partners */
.page_header img {}

.card-body h5 {
    margin: 0;
}

.card {
    padding: 1em;
}

.partners_logo {
    padding: 0 3em;
}

.partners_logo img {
    /* box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important; */
    margin-bottom: 1em;
}

/* Speakers */
.profile {
    width: 160px;
    height: 160px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.profile img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.partners .media {
    border: 1px solid rgba(0, 0, 0, .125);
}

.partners .table {
    border-top: 1px solid #D9D9D9;
    min-width: 460px;
}

.partners .table tr td a {
    color: #00EDFF;
}

.partners .table tr td {
    padding-left: 1em;
    padding-left: 1em;
    border-top: 0px solid #dee2e6;
}

.partners .table tr td:first-child {
    padding-left: 0px;
}

@media(max-width:1024px) {
    .profile {
        width: 130px;
        height: 130px;
    }

    .profile img {
        padding: 7px;
    }
}

@media(max-width:800px) {
    .page_header {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media(max-width:767px) {
    section.container.mt-5 {
        margin-top: 1rem !important;
    }

    .page_header {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        max-width: 280px;
        margin: 0 auto;
    }

    .page_header img {
        margin: 0px !important;
    }

    .partners .media {
        display: block;
        text-align: center;
    }

    .profile {
        width: 115px;
        height: 115px;
        margin: 0 auto 10px;
    }

    .profile img {
        padding: 5px;
    }
}
/* IpadPro */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
	.left_col {
	    transform: translateY(0%);
	}
}
/* portrait */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
	.right_col figure {
	    bottom: 135px;
	}
	.right_col .btn_group {
	    padding-top: 20vh;
	}
}
/* Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
	.landingpage {
	    background-position: right bottom;
	}
	.right_col figure {
        height: auto;
        max-height: 100%;
        position: absolute;
        text-align: center;
        bottom: 30px;
        right: 50px;
    }
    .right_col .btn_group {
	    padding-top: 15vh;
	}
	.counter_sticker {
	    width: 78%;
	    right: 13%;
	}	
	.left_col {
	    width: 30%;
	    margin-top: 10vh;
	}
	.landingpage {
		max-height: 100vh;
    	   overflow: hidden;
	}
}
/* Ipad Pro 10.5 */
@media only screen and (min-width: 834px) and (max-height: 1112px) and (-webkit-min-device-pixel-ratio: 1.5) {
	.left_col {
	    transform: translateY(0%);
	}
}
/* Ipad Pro 10.5 portrait */
@media only screen and (min-width: 834px) and (max-height: 1112px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
	.right_col figure {
	    bottom: 135px;
	}
	.right_col .btn_group {
	    padding-top: 20vh;
	}
}
/* Ipad Pro 10.5 Landscape */
@media only screen and (min-width: 834px) and (max-height: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
	.landingpage {
	    background-position: right bottom;
	}
	.right_col figure {
        height: auto;
        max-height: 100%;
        position: absolute;
        text-align: center;
        bottom: 30px;
        right: 50px;
    }
    .right_col .btn_group {
	    padding-top: 15vh;
	}
	.counter_sticker {
	    width: 78%;
	    right: 13%;
	}	
	.left_col {
	    width: 30%;
	    margin-top: 10vh;
	}
	.landingpage {
		max-height: 100vh;
    	overflow: hidden;
	}
}



/* pixel 2 xl portrait */
@media only screen and (min-width: 411px) and (max-height: 823px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
	
	.landingpage {
	    min-height: calc(100vh - 56px);
	}
}
/* Ipad portrait */
@media only screen and (min-width: 768px) and (max-height: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
	.left_col figure {
	    max-width: 222px;
	}
	
}
/* Glaxy s9 portrait */
@media only screen and (min-width: 360px) and (max-height: 740px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
	
	.landingpage {
	    min-height: calc(100vh - 56px);
	}
}
@media only screen and (min-width: 640px) and (max-height: 360px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
	
	.left_col figure {
	    max-width: 210px;
	}
}
/* Ipfone X portrait */
@media only screen and (min-width: 375px) and (max-height: 812px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {
	
	.landingpage {
	    min-height: calc(100vh - 56px);
	}
}

/* One Plus 7t Landscape */
@media only screen and (min-width: 412px) and (max-height: 914px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
	.right_col .btn_group {
	    padding-top: 0vh;
	}
	@media (max-width:914px) and (min-width:824px){
		.right_col figure {
			position: relative;
		}
	}
	
	.landingpage {
	    /* background-size: cover; */
	    background-position: right top;
	}
}
/* One Plus 7t portrait */
@media only screen and (min-width: 412px) and (max-height: 914px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {

	.landingpage {
	    min-height: calc(100vh - 56px);
	}
}
/* Nexus 10 portrait */
@media only screen and (min-width: 800px) and (max-height: 1280px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1.5) {

	.landingpage {
	    min-height: calc(100vh - 56px);
	}
}
@media screen and (min-width: 1279px) and (max-width: 1281px){

    @media screen and (min-height: 630px) and (max-height: 700px){
        .landingpage {
            background-position: right bottom;
        }
        .right_col figure {
            right: 50px;
            max-width: 500px;
        }
        .right_col figure img {
            height: auto;
        }
        .left_col {
            width: 40%;
            margin-top: 0vh;
        }
    }
}
/* Videos */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

/*  */
 form label.error {
  color: #ff0000;
  font-size: 12px;
  margin-bottom: 0;
}
form .custom-checkbox label.error, #phone-box #phone-error{
    position: absolute;
   	top: 105%;
    left: 0;
}
#phone-box + div{
	margin-top: 0;
}
form p{
    letter-spacing: 0.12px;
    color: #000000;
    margin-bottom: 30px;
    font-size: 12px;
    line-height: 20px;
}
.interested-in label{
    letter-spacing: 0.12px;
    color: #000000;
    margin-bottom: 0px;
    font-size: 12px;
}
    .iti-flag{
        display: none !important;
    }
    .intl-tel-input.separate-dial-code .selected-dial-code {
    padding-left: 0;
}
.intl-tel-input.allow-dropdown{
    width: 100%;
    color: rgb(0 0 0 / 30%) !important;
}
.intl-tel-input .selected-flag .iti-arrow {
    right: 10px;
    }


button.close:focus{
	outline: none;
}
#message .form-container{
	padding: 65px 45px 50px;
    text-align: center;
}
.form-container .btn{
	text-transform: uppercase;
    font-size: 20px;
 }
#message .form-container .btn{
	text-transform: uppercase;
    font-size: 20px;
    margin-top: 30px;
    max-width: 180px;
}


   /*scrollBar*/
.modal-body > .scroll-element,
.modal-body > .scroll-element div
{
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}
 
.modal-body > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
 
.modal-body > .scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%;
}
 
.modal-body > .scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 8px;
}
 
.modal-body > .scroll-element .scroll-element_outer {
    overflow: hidden;
}
 
.modal-body > .scroll-element .scroll-element_outer,
.modal-body > .scroll-element .scroll-element_track,
.modal-body > .scroll-element .scroll-bar {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}
 
.modal-body > .scroll-element .scroll-element_track,
.modal-body > .scroll-element .scroll-bar {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
    opacity: 0.4;
}
 
.modal-body > .scroll-element .scroll-element_track { background-color: #e0e0e0; }
@media (min-width: 1024px){
    .modal-body > .scroll-element .scroll-bar { background-color: #c2c2c2; }
}
.modal-body > .scroll-element:hover .scroll-bar { background-color: #919191; }
.modal-body > .scroll-element.scroll-draggable .scroll-bar { background-color: #919191; cursor: pointer;}
 
 
/* update scrollbar offset if both scrolls are visible */
 
.modal-body > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -12px; }
.modal-body > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -12px; }
 
 
.modal-body > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -12px; }
.modal-body > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -12px; }


/*new Header */
.form_button_set{
    display:flex;
    justify-content: center;
}
.modal-header.custom_close_btn .close {
    margin: 0;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    border-radius: 0;
    background-color: #ffffff;
    color: #ffffff;
    font-size: 9px;
    opacity: 1;
    z-index: 10;
}
.custom_close_btn .close span::before {
    content: "";
    width: 25px;
    height: 1.4px;
    background: black;
    position: absolute;
    transform: rotate(45deg);
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
}
.custom_close_btn .close span::after {
    content: "";
    width: 25px;
    height: 1.4px;
    background: black;
    position: absolute;
    transform: rotate(-45deg);
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
}
.body_scroll .modal-header {
    padding: 20px 30px;
}
.login-register {
    display: flex;
}

footer .login-register{
    display:block;
    position: fixed;
    bottom:0px;
    left:0;
    right:0;
    margin:auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@media (max-width: 900px) {
    .logo {
        max-width: 300px;
        display: inline-block;
    }

}
@media (max-width: 810px) {
    .logo {
        max-width: 200px;
        display: inline-block;
    }

}
#srcSet img {
    object-fit: cover;
    min-height: calc(100vh - 110px);
    min-width:100vw;
}
@media (max-width: 992px) {
    #srcSet img {
        min-height: calc(100vh - 90px);
        object-position: center top;
    }
 }
@media (max-width: 767px) {
    #srcSet img {
        min-height: calc(100vh - 65px);
        object-position: center top;
    }
    section.container.mt-5 {
        padding-bottom: 65px;
    }
}
/*@media (max-width: 480px) {*/
@media (max-width: 580px) {
    .logo {
        max-width: 65vw;
        width: 225px;
        display: inline-block;
    }
    #srcSet img {
        min-height: calc(100vh - 56px);
        object-position: center top;
    }

    footer .login-register {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        display: flex;
    }
    footer .btn_group{
        display: flex;
        width: 100%;
    }
    footer .custom-btn {
        height: 50px;
        width: 100%;
        border: 0px solid transparent !important;
        background: #00A8E5;
        color: #fff !important;
        border-radius: 0px;
        box-shadow: none;
    }
    footer .custom-btn:last-child {
        background: #D74000;
    }

}
.sidenav-fix a[href^="auditorium"] .icon::after, .sidenav-fix a.live .icon::after {
        background: #b00;
        content: "Live";
        position: absolute;
        top: 10px;
        right: 12px;
        line-height: 1;
        padding: 3px 7px;
        color: #fff;
        font-size: 12px;
        pointer-events: none;
        border-radius:2px;
    }
#ajendaTable tr{
    position: relative;
}
.date_cell.live_event::after {
    background: #b00;
    content: "Live";
    position: absolute;
    top: 0px;
    left: 12px;
    line-height: 1;
    padding: 3px 7px;
    color: #fff;
    font-size: 12px;
    pointer-events: none;
    border-radius: 2px;
}
.date_cell.upcomming_event::after {
    background: orange;
    content: "Upcoming";
    position: absolute;
    top: 0px;
    left: 12px;
    line-height: 1;
    padding: 3px 7px;
    color: #fff;
    font-size: 12px;
    pointer-events: none;
    border-radius: 2px;
}
@media (min-width: 1025px) {
    
    footer .login-register{
        display:none;
    }

        #header{
            flex-wrap: wrap;
            padding: 0;
            box-shadow: none;
            position: fixed;
            top: 0;
            z-index: 5;
            width:100%;
            background: transparent;
        }
        .top_header {
            width: 100%;
            background: rgba(255,255,255, 0.1);
            display: flex;
            justify-content: space-between;
            z-index: 1;
            align-items: center;
            box-shadow: 0 40px 90px #fff inset;
        }
        .logo{
                padding: 10px 25px 10px;
        }
    .preeheader{
        width: 100%;
        background: #e9e9e9;
        text-align: left;
        display:none;
    }
#header ul li a {
    padding: 10px 20px 9px;
    border-bottom: 1px solid transparent;
}

#header ul li a:hover,
#header ul li a.active {
    color: #00a8e5;
    /*border-bottom: 2px solid #00a8e5;*/
}

    .login-register{
        display:flex;
        justify-content: flex-end;
        align-items: center;
        padding-right: 10px;
    }
    .login-register button {
        margin: 0;
        height: 100%;
        padding: 0 35px;
        box-shadow: none;
        border-radius: 0;
        background: #d74000 !important;
        color: #ffffff !important;
        font-weight:600;
        border-width:0px !important;
            float: left;
            outline: none !important;
    }
    .login-register button:first-child{
        background: #00a8e5 !important
    }
    .login-register button:focus, .login-register button:active {
  box-shadow: inset 0 0px 0 #ddd;
}
    
#landingpage.landingpage {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: calc(100vh - 110px);
}

/**/

    #header li {
        float: left;
    }

    #header .menu {
        clear: none;
        float: right;
        float:left;
        max-height: none;

    }

    #header .menu-icon {
        display: none;
    }

/*Modal*/
.body_scroll .modal-body {
    max-height: calc(100vh - 110px);
    }
.body_scroll .modal-header{
    padding: 20px 40px;
}
.modal-title {
    font-size: 1.3em;
}
.modal-header.custom_close_btn .close {
    right: -52px;
}


}

/**/
header p{
    margin:0;

  font-stretch: normal;

  font-style: normal;

  line-height: 1.21;

  letter-spacing: normal;

  text-align: left;

  color: #292b3c;
}
.countrySelect {
  position: relative;
  height:40px;
}
.countrySelect:after {
   font-family: 'FontAwesome';
  content: '\f107';
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  z-index: 2;
  border-radius: 0px 6px 6px 0;
  box-shadow: -3px 0 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  pointer-events: none;
  font-size: 24px;
    text-align: center;
    color: #292b3c;
    line-height: 40px;
}
#selectCountry {
    color: #292b3c;
    padding: 0 0 0 18px;
    border-radius: 6px;
    box-shadow: -6px 6px 18px 0 rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    height: 40px;
    margin: 0px;
    outline: none;
    border-width: 0px;
    -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
   width: 20vw;
    max-width: 200px;
}
.user_profile li img {
    max-width: 34px;

}
.hideLargeScreen{
    display:none !important;
}
@media (max-width:1024px){
    #header .user_profile ul li a {
        padding: 3px 10px;
        margin: 0 5px;
    }
    .login-register {
        margin-right: 35px;
    }
}
@media (max-width:630px){
    #selectCountry {
        width: 180px;
    }
}
.maincontainer{
    width: 100vw;
    height:100vh;
}

/*sideNav*/
.sidefix-nav {
  position: fixed;
  right: 0;
  top: 50%;
  top: calc(50% - -30px);
  transform: translateY(-50%);
  z-index: 2;
  padding: 5px;
  background: rgba(255,255,255, 0.1);
  border-radius: 15px 0 0 15px;
  box-shadow: 0 0px 30px #fff inset;
}
.sidefix-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidefix-nav li {
  display: block;
  margin: 1px;
}
.sidefix-nav ul li a {
  padding: 15px 6px;
display: block;
max-width: 92px;
}
/*Modal*/

.modal *{
    color: #001e55;
}
.modal-body {
    padding: 2rem;
}
.modal button.close {
    background: #fca400;
    width: 60px;
    height: 60px;
    position: absolute;
    right: -30px;
    top: -30px;
    border-radius: 50%;
    font-size: 40px;
    color: #fff !important;
}
.modal button.close  span{
    color: #fff !important;
}
.media {
    align-items: center;
}
.media-body h5 {
  margin: 0;
}
.textarea-outer-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.textarea-outer-wrapper ul li {
  padding: 20px 0 0 5px;
}
.textarea-outer-wrapper ul li strong {
  display: block;
}
.avatar .user {
    border: 1px solid #707070;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #dad6d6;
}
.modal-backdrop.show {
    opacity: 0.1;
}

@media (min-width:576px){
    #userProfile .modal-dialog {
        max-width: 500px;
        margin: 1.75rem 120px 1.75rem auto;
        padding-top: 6rem;
    }
    #userProfile .modal-dialog-centered {
        align-items: baseline;
    }
    .modal-content {
        border-radius: 1rem;
    }
}




.modal h4 {
    color: #292b3c;
    margin-bottom: 1rem;
    font-weight: bold;
}
.nav.nav-tabs {
  flex-wrap: nowrap;
  border-width: 0px;
}
.nav.nav-tabs ul {
  display: flex;
  width: 100%;
}
.nav.nav-tabs li {
  width: 100%;
  margin-right: 5px;
}
.nav.nav-tabs li:last-child {
  margin-right: 0;
}
.nav.nav-tabs li a {
  padding: 8px 20px;
  display: block;
  text-align: center;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #d3d3d3;
  border-radius: 15px 15px 0 0;
  text-decoration: none !important;
  font-weight: bold;
}
.nav.nav-tabs li a.active {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fca400;
  color: #fff;
}

.tab-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 0 40px;
}

.tab-content ul li {
    box-shadow: -6px 6px 48px 0 rgba(0, 0, 0, 0.16);
    margin: 40px;
    margin: 20px;
    width: calc(20% - 65px);
    width: calc(20% - 32px);
}
.tab-content ul li:nth-child(5n+1) {
    margin-left: 0;
}
.tab-content ul li:nth-child(5n+5) {
    margin-right: 0;
}
.tab-content ul li a {
    text-decoration: none !important;
    position: relative;
    display: block;
}
.tab-content ul li a span {
    padding: 6px 16px 9px 16px;
    box-shadow: -3px 3px 13px 0 rgba(0, 0, 0, 0.16);
    background-color: #2d94d6;
    display: block;
    text-align: center;
    color: #fff !important;
}
.modal-body-inner {
    /*height: calc(100vh - 208px);*/
    max-height: calc(100vh - 208px);
    margin-left: -40px;
    margin-right: -28px;
}
#shopLists.modal button.close {
       /* width: 40px;
        height: 40px;
        right: 0;
        top: 0;*/

        right: -3px;
        top: -3px;
    }
@media (max-width:992px){
    #vCardLists .modal-body-inner, #brochures .modal-body-inner {
        max-height: calc(100vh - 120px);
    }

}
@media (min-width:1025px){
    #shopLists .modal-dialog,
    #couponModal .modal-dialog {
        max-width: 990px;
        margin: 1.75rem 120px 1.75rem auto;
        /*padding-top: 6rem;*/
    }
    #shopLists .modal-dialog-centered,
    #couponModal .modal-dialog-centered {
        align-items: baseline;
    }
    #shopLists  .modal-content,
    #couponModal  .modal-content {
        border-radius: 1.3rem;
        max-height: calc(100vh - 3rem);
    }
    #couponModal .modal-dialog {
        max-width: 1100px;
        border-radius: 12px;
        overflow: hidden;
    }
    
}
#couponModal.modal button.close span{
    color: #fff !important;
}
#couponModal.modal button.close {
  right: -5px;
  top: -5px;
}
#couponModal iframe {
    height: calc(100vh - 180px);
    border: 0px solid;
    width: 1100px !important;
}
#couponModal .shopListOption2.modal button.close span {
  color: #fff !important;
  }
#couponModal .modal-body{
    padding:0;
}
.top_banner img {
  width: 100%;
  border-radius: 7px 7px 0px 0;
}
main:after{
    opacity: 0;
    pointer-events: none;
    content: "Rotate to portrait!";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    z-index: 10;
    text-align: center;
    width: 100%;
    min-width: 100vw;
    background: rgba(0,0,0,.7);
    height: 100%;
    min-height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
/*@media screen and (orientation:portrait) and (max-width: 1366px)  and (-webkit-min-device-pixel-ratio: 1.5)  {*/
@media screen and (orientation: landscape) and (max-width: 1024px) /* and (-webkit-min-device-pixel-ratio: 1.5)  */{
    main:after{
        opacity: 1;
        pointer-events: auto;
    }

}

@media (max-width:1025px){
    .sidefix-nav{
        display:none;
    }


    .tab-content ul li {
      display: flex;
      width: 100%;
      margin: 0;
      box-shadow: none;
      justify-content: space-between;
      border-bottom: solid 0.3px #d3d3d3;
      align-items: center;
      padding: 6px 0;
    }
    .tab-content ul {
      display: block;
      padding: 0 15px 14px 20px;
    }
    .tab-content ul li a span {
      background: transparent;
      box-shadow: none;
      padding: 0;
      line-height: 1;
      color: ;
    }
    .tab-content ul li a small {
      line-height: 1;
      color: #bfbebe;
      font-weight: 100;
      transition: 0.3s ease-in-out;
    }
    .tab-content ul li a:hover small {
      color: #292b3c;
    }
    .shopLIst_inner_container {
      background: lightgray;
      padding: 10px;
      border-radius: 26px;
      margin-right: -24px;
      margin-left: -24px;
    }
    #shopLists .modal-body,
    #couponModal .modal-body {
      padding-bottom: 15px;
    }
    #shopLists .modal-content,
    #couponModal .modal-content {
      border-radius: 21px;
    }
    .modal-body-inner {
      margin: 0;
      background: #fff;
      border-radius: 0 0 18px 18px;
    }
    .nav.nav-tabs li a {
        box-shadow: none;
        color: #fff;
        font-weight: 400;
        border-radius: 0px;
    }
    .nav.nav-tabs li a.active {
        box-shadow: none;
        background-color: #fff;
        color: #292b3c;
    }
    .nav.nav-tabs {
        margin-bottom: 8px;
    }
    .nav.nav-tabs li:first-child a {
        border-radius: 15px 0 0 0;
    }
    .nav.nav-tabs li:last-child a {
        border-radius:0 15px 0 0;
    }
    .modal h4 {
        font-size: 16px;
    }
    html{
        font-size: 14px;
    }
    #userProfile.modal button.close {
        width: 50px;
        height: 50px;
        right: 0;
        top: 0;
    }
    #userProfile .modal-content {
        border-radius: 25px;
    }
    .logo img{
            max-height: 30px;
    }
    .countrySelect , #selectCountry{
        height: 34px;
    }
    .countrySelect{
        margin-top: 2px;
    }
    .countrySelect::after{
        line-height: 34px;
    }
}

/**/
.list-modal .modal-content {
    border-radius: 45px;

}
.listItem_inner_container {
    border-radius: 45px;
    box-shadow: -6px 6px 22px 0 rgba(0, 0, 0, 0.16);
    overflow: hidden;
}
.list-modal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 3px 0 0;
}
.list-modal ul li {
  display: block;
  width: 100%;
  margin: 0;
  box-shadow: none;
  justify-content: space-between;
  border-bottom: solid 0.3px #d3d3d3;
  align-items: center;
  padding:0 1em;
}
.list-modal ul li:first-child{
    padding-top: 10px;
}
.list-modal ul li:last-child{
    padding-bottom: 12px;
}
.list-modal ul li a {
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: block;
  padding: 8px 1em;
  padding: 8px 1em 8px 0.5em;
}
.list-modal ul li a:hover {
  color: #fca400;
}
.list-modal .modal-body {
  padding: 0;
}
.list-modal h4 {
  padding: 2rem 2rem 1rem;
  color: #292b3c;
  font-size: 20px;
  margin: 0;
}
.list-modal .modal-body-inner {
    margin-left: 0px;
    margin-right: -0px;
}

#vCardLists button.close, #brochures button.close {
    right: 0px;
    top: 0px;
}
/**/
#cards.modal button.close {
    background: #fca400;
    width: 52px;
    height: 52px;
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 50%;
    font-size: 40px;
    color: #fff !important;
}
#cards .modal-dialog {
    max-width: 640px;
    }
#cards.list-modal .modal-body{
    padding:5rem 3rem 3rem;
}
#cards .cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#cards .user {
  width: 65px;
    border-radius: 50%;
    border: solid 1px #e3e3e3;
    height: 65px;
}
#cards .listItem_inner_container {
  padding: 2rem;
}
#cards .user img {
  border-radius: 50%;
}
#cards .media-body span, #cards .media-body h5 {
  color: #707070;
}

.download-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
}
.download-btn .button{
    padding: 16px 29px;
    border-radius: 18px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #2d94d6;
    color: #fff;
    font-size: 20px;
    border: 0px;
    outline: none;
}
.download-btn i{
    color: #fff;
    margin-left: 8px;
}
.left li a i {
  color: #c2c2c2;
  font-size: 20px;
  padding-right: 15px;
}
.left ul li a {
  display: flex;
  color: #707070;
  transition:all 0.2s ease-in-out;
}
.left ul li a:hover span{
    color: #f6b217;
}
.left ul li:last-child a i {
  font-size: 30px;
}
.left ul li:first-child a i {
  font-size: 24px;
}
#cards.list-modal ul li {
  border: 0px;
}
.right {
    max-width: 275px;
    text-align: center;
}
.right img{
    max-width: 200px;
    max-height: 150px;
}
.left ul li span , .right h3{
    color: #707070;
}
.right h3 {
    font-size: 22px;
}

@media (max-width:812px){
    #cards.list-modal .modal-body {
        padding: 3rem 2rem 2rem;
    }
    .right img{
        max-width: 100%;
    }
}

@media (max-width:992px){
    #cards .user {
        width: 55px;
        height: 55px;
    }
    #cards.list-modal ul li a {
        padding: 4px 8px;
    }
    #cards .listItem_inner_container {
        padding: 1rem;
    }
    #cards.list-modal .modal-body {
        padding: 1rem 1rem 1rem;
    }
    .download-btn .button {
        padding: 10px 25px;
        border-radius: 16px;
        font-size: 16px;
    }
    .download-btn {
        padding-top: 1rem;
    }
}

@media (min-width:992px){
    #vCardLists .modal-dialog, #cards .modal-dialog , #brochures .modal-dialog{
        margin: 1.75rem auto 1.75rem 2rem;
    }
    #Warning .modal-dialog {
        margin: 1.75rem auto 1.75rem 7rem;
    }

}


#backDropShadow.active:after {
  color: ;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 45px;
}
#Warning .modal-body {
  text-align: center;
  padding: 4rem 2rem;
}
#Warning .modal-body p {
  color: gray;
  font-size: 16px;
  margin-bottom: 1.5rem;
}
#Warning .modal-body button{
  padding: 10px 20px;
  background: #fca400;
  color: #fff;
  border-color: #fca400;
}
#Warning .modal-body button.confirmclosed {
  background: transparent;
  border-color: #E5E5E5;
  padding: 10px 20px;
  color:gray;
}
#Warning .modal-body button.confirmclosed:hover {
  border-color: #fca400;
}


#floor .modal-dialog, #brandInfo .modal-dialog {
    max-width: 380px;
}
#floor .modal-content, #brandInfo .modal-content {
    border-radius: 2rem;
}
#floor.modal button.close , #brandInfo.modal button.close {
    width: 55px;
    height: 55px;
    right: 0;
    top: 0;
}
.custom-control.custom-radio {
  padding: 8px 20px;
  border-top: .5px solid #d5d3d3;
  border-bottom: .5px solid #d5d3d3;
}
.custom-control.custom-radio label {
  font-size: 16px;
}

#selectFloor {
    font-size: 18px;
    margin-top: 20px;
    color: #fff;
    font-weight: bold;
    padding: 6px 20px;
}

#floor .currentFloor::after {
    content: 'Current floor';
    color: red;
    right: 0;
    position: absolute;
}


@media (max-width : 580px){
    #header .menu {
        max-width: 100vw;
    }
    #header .user_profile ul {
        display: flex;
        padding-right: 10px;
    }
    #header ul li, #header ul li.hideLargeScreen{
        display: block !important;
    }
    #header .user_profile ul li a {
        padding: 3px 5px;
    }
    .countrySelect{
        position: fixed;
        padding: 0;
        top: 50px;
        left: 0;
        right: 0;
        z-index: -99;
        margin: 8px;
        box-shadow: 0 0 20px white,0 0 20px white,0 0 20px #c1c2c7;
        /*overflow: hidden;*/
        border-radius: 4px;
        background: white;
        transform: translateY(-0px);
        transition: 0.3s all;
        pointer-events: none;
        opacity: 0;
    }
    .countrySelect.active{
        transform: translateY(0px);
        z-index: 99;
        pointer-events: auto;
        opacity: 1;
    }
    .countrySelect #selectCountry{
        width: 100%;
        max-width: 100vw;
    }

    .closeSelect {
        position: absolute;
        right: 3px;
        top: -48px;
        z-index: 999999999;
        background: #001e55;
        border-radius: 50%;
        width: 33px;
        height: 33px;
        text-align: center;
        line-height: 33px;
        box-shadow: 0 0 20px white,0 0 20px white,0 0 20px white;
        cursor: pointer;
    }
    .countrySelect.active .closeSelect::before {
        position: relative;
        font-size: 14px;
        color: white;
        font-family: 'FontAwesome';
        content: '\f00d';
    }
    #header.active .menu-icon {
        z-index: -1;
    }
}

.backgroundAudioControl img{
    max-height: 72px;
}
#backgroundMusic{
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.menu li:last-child{
    position: relative;
    padding-bottom: 45px;
}
.custom-switch {
    padding-left: 2.25rem;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 0;
    width: calc(100% - 20px);
    text-align: right;
    height: 100%;
    padding-top: 19px;
    z-index: 1;
}
.custom-control-label::before {
    border: rgba(41, 43, 60, 0.9) solid 1.2px;
}

.custom-switch .custom-control-label::before {
    left: 0;
    width: 2.4em;
    pointer-events: all;
    border-radius: .5rem;
    top: -12px;
}
.custom-switch .custom-control-label::after {
    top: calc(-.85rem + 2px);
    left: 2px;
    background-color: rgba(41, 43, 60, 0.9);
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #fff;
    -webkit-transform: translateX(1.35rem);
    transform: translateX(1.35rem);
}
.custom-switch .custom-control-label span{
    font-size: 12px;
}
.custom-switch .custom-control-label span.on{
    color: rgba(0, 0, 0, 0.16);
}
.custom-switch .custom-control-label span.off{
    color: rgba(0, 0, 0, 0.53);
}
.custom-switch .custom-control-input:checked ~ .custom-control-label span.on{
    color: rgba(0, 0, 0, 0.53);
}
.custom-switch .custom-control-input:checked ~ .custom-control-label span.off{
    color: rgba(0, 0, 0, 0.16);
}
.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color:  rgba(41, 43, 60, 0.9);
    background-color: rgba(41, 43, 60, 0.9);
}

#introModal .modal-dialog {
    max-width: 880px;
}
#introModal.modal h4 {
    font-size: 1.4rem;
}
#introModal .modal-body-inner {
    height: auto;
    max-height: calc(100vh - 180px);
    margin-left: 0px;
    margin-right: -28px;
}
#introModal .modal-content > .modal-body{
    padding-left: 1rem;
}
.carousel-wrap {
    padding: 0 40px 0 30px;
    width: 100%;
    position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{
    position: absolute;
    top: calc(50% - 20px);
}

/* end fix */
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}
.owl-nav button.disabled{
    opacity: 0;

}
.owl-nav i {
  font-size: 32px;
  -webkit-text-stroke: 2px white;
}

.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}
#introModal .modal-content {
    border-radius: 2rem;
}

#introModal.modal button.close {
    right: -10px;
    top: -10px;
}
@media (max-width :478px){
    #cards .listItem_inner_container{
        overflow-x: scroll;
    }
    #cards .listItem_inner_container > div{
        min-width: 480px;
        padding-right: 1.5rem;
    }
}
@media (max-width :880px){


    #introModal .modal-dialog , #floor .modal-dialog, #floor .modal-dialog, #brandInfo .modal-dialog{
        max-width: 380px;
        margin: .5rem auto;
    }
    #introModal.modal h4 {
        font-size: 1.2rem;
    }
    #introModal .modal-body-inner {
        /*height: calc(100vh - 208px);*/
        height: auto;
        max-height: calc(100vh - 160px);
        margin-left: 0px;
        margin-right: -28px;
    }
    #introModal.modal button.close {
        background: #fca400;
        width: 50px;
        height: 50px;
        position: absolute;
        right: 0px;
        top: 0px;
        border-radius: 50%;
        font-size: 36px;
        color: #fff !important;
        z-index: 9;
    }
    #introModal .shopLIst_inner_container {
        background: transparent;
        padding: 0px;
        border-radius: 0px;
        margin-right: -0px;
        margin-left: -0px;
    }
    #introModal .modal-content > .modal-body{
        padding-left: 1rem;
    }
    .carousel-wrap {
        padding: 0 40px 0 30px;
        width: 100%;
        position: relative;
    }

}

/*
*/
.tab-content ul li a span.badge {
    background: #c02727;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(25%, -25%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0;
    line-height: 1.5;
    text-align: center;
    padding: 15px 0;
    box-shadow: none;
}
.tab-content ul li a span.badge span {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: block;
    line-height: 1.4;
    font-size: 12px;
    font-weight: 100;
}

.tab-content ul li .badge, .tab-content ul li .badge span {
    background: #c02727;
    color: #fff;
}
.tab-content ul li .badge{
    margin: 0 5px;
}
.tab-content ul li .shopeName {
    width: calc(100% - 124px);
}
.tab-content ul li .badge span {
    display: block;
    font-size: 10px;
    font-weight: 100;
}
.InfoLogo {
    padding: 3rem;
}
.infoDisc p{
    color: #707070;
}
/*#brandInfo .modal-body-inner {
    height: auto;
    max-height: calc(100vh - 180px);
    margin-left: 0px;
    margin-right: -28px;
}*/

/*ShopLIst Option 2*/
.shopListOption2 .modal-body {
  padding: 1rem 2rem;
}
.shopListOption2 .modal h4 {
  font-size: 1.2rem;
}
.search-filter{
    display: flex;
    justify-content: space-between;
    column-gap: 1rem;
    margin-bottom: 1rem;
}
.search-filter .btn-group{
    width:100%;
}
.search-filter .multiselect-container{
    width:100%;
}
.search-filter .multiselect-container > li {
  padding: 0;
  display: flex;
  justify-content: flex-start;
}
.search-filter .multiselect-container > li > a,
.search-filter .multiselect-container label.checkbox {
  display: block;
  width: 100%;
}
.search-filter .multiselect-container label.checkbox {
  position: relative;
  border-bottom: 1px solid #F2F4F8;
    padding-top: 10px;
    padding-bottom: 10px;
}
.search-filter .btn-dark{
    color: #fff;
}
.search-filter .btn-dark:hover{
    color: #fff;
    background-color: rgba(0,0,0,0.5);
}
.search-filter .dropdown-menu {
  border: 2px solid rgb(242, 244, 248);
  /*min-width: 220px;
  left: auto !important;
    right: -30px;*/
}
.search-filter .multiselect-container label.checkbox input {
  opacity: 0;
}
.search-filter .multiselect-container label.checkbox:after{
    position: absolute;
    left: 20px;
    top: 50%;
    width: 17px;
    height: 17px;
    content: '';
    transform: translateY(-50%);
    background: #F2F4F8;
    border-radius: 4px;
}
.search-filter .multiselect-container li label.checkbox::before {
  position: absolute;
  left: 24px;
  top: 50%;
  content: '\2713';
  transform: translateY(-50%) scale(0);
  border-radius: 4px;
  font-size: 10px;
  z-index: 1;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.search-filter .multiselect-container li.active label.checkbox::before {
  transform: translateY(-50%) scale(1);
}
.form-inline.search-filter .multiselect-container li a label.checkbox input[type="checkbox"], 
.form-inline.search-filter .multiselect-container li a label.radio input[type="radio"] {
  margin-left: -20px;
  margin-right: 8px;
  margin-bottom: 1px;
}
.search-filter .multiselect{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-filter .multiselect,
.search-filter input.form-control {
  background: #FFFFFF !important;
    border: 2px solid #F2F4F8;
    box-sizing: border-box;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.04);
    border-radius: 7px !important;  
}
.search-filter button{
    flex: 1;
}
.search-filter .multiselect-native-select{
    flex: 3;
}
.search-filter input{
    flex: 5;
}
.shopListOption2 .nav.nav-tabs li a{
    box-shadow: none;
    background-color: transparent;
    border-radius:  0px;
    text-decoration: none !important;
    font-weight: normal;
    font-size: 14px;
    color: rgba(136, 137, 137, 1);
    position: relative;
    padding: 5px 20px;
}
.shopListOption2 .nav.nav-tabs li.active a{
    box-shadow: none;
    background-color: transparent;
    color: rgb(103, 165, 239);
}
.shopListOption2 .nav.nav-tabs li.active a:after{
    content: '';
    position: absolute;
    width: 40%;
    height: 3px;
    background-color: rgb(103, 165, 239);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.shopListOption2 .nav.nav-tabs li {
  width: auto;
}

.itemsCardContainer {
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  height: 100%;
  padding-bottom: 50px;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.shopListOption2 .tab-content ul {
  column-gap: 20px;
  row-gap: 20px;
  box-sizing: border-box;
  padding: 0 0 30px 10px;
}
.shopListOption2 .tab-content ul li{
    position: relative;
    box-shadow: none;
    box-sizing: border-box;
    padding:0;
    margin: 0;
    width: calc(33.33% - 14px);

}

.shopListOption2 .categoryItem {
  display: block !important;
  padding: 5px !important;
  margin: 0 !important;
}
.shopListOption2 .categoryItem li {
  background: #FFD2B1;
  border-radius: 3px;
  font-weight: bold;
  font-size: 10.0579px;
  line-height: 12px;
  letter-spacing: 0.03em;
  color: #EC8134;
  white-space: nowrap;
  display: inline-block;
  margin: 5px 0 0px 5px !important;
  width: auto !important;
  padding: 5px 8px !important;
}
#shopLists .modal-content > .modal-body,
#couponModal .modal-content > .modal-body{
  background: rgba(207, 229, 255, 0.1);
}

.itemsCard {
  display: flex;
  align-items: center;
}
.brandLogo {
  flex: 1;
  padding: 10px;
    box-sizing: border-box;
}
.brandDesc {
  flex: 2;
  font-size: 12px;
  padding-right: 10px;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.79);
}
.brandDesc h4 {
  font-size: 14px;
  padding-top: 1rem;
  margin-bottom: 0.5rem;
}
.brandDesc p {
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin:0;
    padding:0;
}
.itemCta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background: #0B2A75;
}
.shopListOption2 .tab-content ul li .badge, .shopListOption2 .tab-content ul li .badge span {
  background: transparent;
  }
.shopListOption2 .tab-content ul li .badge span {
  display: inline-block;
  font-size: 14px;
  font-weight: 100;
  text-align: left;
}
.shopListOption2 .tab-content ul li a span {
  padding: 6px 15px;
  background: rgba(255, 162, 95, 1);
  font-size: 14px;
  white-space: nowrap;
  border-radius: 4px;
}
.shopListOption2 .tab-content ul li a {
  padding: 5px 8px;
  width: 100%;
}
.itemCta span {
  position: relative;
  width: 100%;
}
/**/
.shopListOption2.modal button.close span {
  color: #000 !important;
  font-size: 28px;
}
.shopListOption2.modal button.close {
  background: transparent;
  height: 46px;
}
@media (max-width:1025px){
    .shopListOption2 .search-filter .btn-dark {
          z-index: 9;
        }
    .shopListOption2.modal button.close span {
      color: #000 !important;
      font-size: 28px;
    }
    .shopListOption2.modal button.close {
      background: transparent;
      height: 46px;
    }
    .search-filter .multiselect-selected-text{
        width: 10px;
        opacity: 0;
        position: relative;
    }
    .search-filter .btn-group::after {
          content: '\f0b0';
          position: absolute;
          pointer-events: none;
          left: 40%;
          top: 50%;
          z-index: 1;
          transform: translate(-50%, -50%);
          font-family: FontAwesome;
        }
    .search-filter .multiselect-native-select {
      flex: 1;
    }
    .search-filter input {
      flex: 6;
    }
    .shopListOption2 .tab-content ul li {
      width: 100%;
    }
    .shopListOption2 .scroll-wrapper .modal-body-inner{
        padding: 0rem 1rem 1rem 0;
        background: transparent;
    }
    .shopListOption2 .shopLIst_inner_container,
    .shopListOption2  .modal-body-inner {
      background: transparent;
    }
    .nav.nav-tabs {
      margin-bottom: 8px;
      border-bottom: 2px solid #D9EAFF;
      justify-content: space-between;
    }
    .shopListOption2 .nav.nav-tabs li a.active::after {
      bottom: -2px;
    }
    .itemsCardContainer {
      border-radius: 5px;
      padding-bottom: 0;
      display: flex;
    }
    .itemsCard {
      flex: 3;
      flex: 4;
    }
    .itemCta {
        position: relative;
      flex: 1;
      background: transparent;
        text-align: center;
    }
    .brandDesc {
      flex: 4;
      padding-bottom: 8px;
    }
    .brandDesc h4 {
      font-size: 12px;
    }
    .shopListOption2 .categoryItem {
      padding: 0px !important;
    }
    .shopListOption2 .categoryItem li {
      font-size: 8.058px;
    }
    .shopListOption2 .tab-content ul li {
      padding: 3px;
      border-width: 0px;
    }
    .shopListOption2 .tab-content ul li a span {
      padding: 6px;
      background: rgb(0, 0, 0);
      display: inline;
    }
    .shopListOption2 .tab-content ul li a span img{
        max-width:22px;
    }
    .tab-content ul li a small {
          display: block;
          padding-top: 8px;
        }
}
.floorname{
    display: none;
}

/*Search Items*/
.shopListOption2 .seearch_item #shopListTab{
    display: none;
}
@media (min-width:1024px){
.shopListOption2 .modal-body-inner{
    max-height: calc(100vh - 222px);
}
.shopListOption2 .seearch_item .modal-body-inner {
  max-height: calc(100vh - 191px);
}
.shopListOption2 .seearch_item .tab-content ul li {
  width: 100%;
}
.shopListOption2 .seearch_item .itemsCardContainer{
  display: flex;
  align-items: center; 
  padding-bottom: 0px;
  justify-content: space-between;
    text-align: left;
    column-gap: 15px;
    box-shadow: 0px 0px 1px 0 rgba(0, 0, 0, 0.1);
}
.seearch_item .brandDesc h4 {
  padding-top: 0;
  margin-bottom: 0;
  padding-left: 8px;
  font-weight: normal;
  color: rgba(136, 137, 137, 1);
}
.shopListOption2 .seearch_item .tab-content ul{
    row-gap: 2px;
    margin: 0;

}

.shopListOption2 .seearch_item .categoryItem{
    flex: 5;
    text-align: left;
}
.shopListOption2 .seearch_item .brandDesc p{
  display: none;
}
.shopListOption2 .seearch_item .itemCta{
  position: relative;
    background:transparent;
  width:auto;
  flex: 2;
}
.shopListOption2 .seearch_item .itemsCard{
    flex: 5;
}
.seearch_item .floorname{
    color: rgba(136, 137, 137, 1);
    font-size: 14px;
    display: inline-block;
}
.shopListOption2 .seearch_item .itemCta .badge{
  background-color: #ff4c4c;
  font-weight: normal;
  border-radius: 0;
padding: 4px 6px;
}
.shopListOption2 .seearch_item .tab-content ul li a span{
    background-color: #000;
}
.shopListOption2 .seearch_item .brandLogo{
  max-width:120px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.shopListOption2 .tab-content ul.searchTable_header {
    display: none;
}
.shopListOption2 .seearch_item .tab-content ul.searchTable_header {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  margin-left: 10px;
  margin-bottom: 2px;
  background: #fff;
  padding: 10px;
  box-shadow: 0px 0px 1px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.shopListOption2 .seearch_item .tab-content ul.searchTable_header li{
    flex: 1;
}
.shopListOption2 .seearch_item .tab-content ul.searchTable_header li:first-child{
      max-width: 94px;
        flex: 2;
}.shopListOption2 .seearch_item .tab-content ul.searchTable_header li.shopName{
      flex: 1.7;
}
.shopListOption2 .seearch_item .tab-content ul.searchTable_header li.floor{
     flex: 0.6;
}.shopListOption2 .seearch_item .tab-content ul.searchTable_header li.category{
     flex: 4;
}
}
.floorname_mobile{
    display: none;
}
.error.search-filter .multiselect.dropdown-toggle.btn.btn-default, .error.search-filter input.form-control{
    border-color: red;
}
@media (max-width:1024px) {
    .search-filter .dropdown-menu {
          min-width: 220px;
          left: auto !important;
          right: -30px;
        }
    .shopListOption2 .tab-content ul.searchTable_header{
        display: none;
    }
    .seearch_item .floorname_mobile{
        display: block;
        color: rgba(136, 137, 137, 1);
        font-size: 14px;
    }
    .brandDesc h4 {
          font-size: 12px;
          position: relative;
          display: inline-block;
          clear: both;
        }
    .shopListOption2 .brandDesc .badge{
        position: absolute;
        left: calc(100% + 5px);
        background-color: #ff4c4c !important;
        font-weight: normal;
        padding: 4px 6px;
        top: 9px;
        border-radius: 3px;
    }
    .seearch_item .itemsCard {
      flex: 5;
    }
    .tab-content ul li a small {
          font-size: 10px;
        }
}
h3.noItem{
    display: block !important;
    font-size: 1.5rem;
    width: 100%;
    color: #e36565;
}

@media (max-width:1100px){
    #couponModal .modal-content > .modal-body{
        /*overflow-x: scroll;*/
    }
    #couponModal iframe {
          width:560px !important;
            max-width: 100% !important;
        }

}