<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**************** variables *****************************/
/**************** functions *****************************/
/******************* margins &amp; padding *****************************/
/******************* font sizes *****************************/
/******************* font weight *****************************/
/******************* font case &amp; alignment *****************************/
/******************* buttons  *****************************/
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:300,400,700');
.new {
  padding: 0;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  /* chrome */
  -moz-osx-font-smoothing: grayscale;
  /* moz */
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}
html {
  -webkit-text-size-adjust: none;
}
a,
a:hover {
  text-decoration: none;
  color: #000;
  outline: none;
}
a:focus {
  text-decoration: none;
}
:active,
:focus {
  outline: none !important;
}
p:empty {
  margin: 0 !important;
  padding: 0 !important;
}
br {
  display: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
::selection {
  background: #72d0ea;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #72d0ea;
  color: #fff;
  text-shadow: none;
}
::-webkit-selection {
  background: #72d0ea;
  color: #fff;
  text-shadow: none;
}
.clearfix:before,
.clearfix:after,
.row:after,
.row:before {
  content: '';
  display: table;
  clear: both;
}
/* MATERIAL DESIGN RIPPLE */
.ripple-wrapper {
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
.ripple-wrapper.animated {
  animation: ripple 0.65s linear;
  -webkit-animation: ripple 0.65s linear;
  -moz-animation: ripple 0.65s linear;
  -o-animation: ripple 0.65s linear;
}
.has-ripple {
  overflow: hidden;
  position: relative;
  user-select: none;
  outline: none;
}
@keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
@-webkit-keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
@-o-keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
@-moz-keyframes ripple {
  100% {
    -webkit-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    opacity: 0;
  }
}
a:focus,
a:active {
  color: initial !important;
}
/*************** commmon styles ***************/
.web_btn {
  min-width: 150px;
  padding: 0 30px;
  background: #ffffff;
  color: #222222 !important;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #222222;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.web_btn.min_large {
  min-width: 200px;
}
.web_btn:hover {
  opacity: 0.9;
  background: #222222;
  color: #ffffff !important;
}
.web_btn.btn_fil_blue {
  background: #56bdda;
  color: #ffffff !important;
  border: 1px solid #34adcc;
}
.web_btn.btn_fil_blue:active,
.web_btn.btn_fil_blue:focus {
  background: #00a4cf;
}
.web_btn.btn_bdr_blue {
  border: 1px solid #34adcc;
}
.web_btn.btn_bdr_blue:active,
.web_btn.btn_bdr_blue:focus {
  background: #00a4cf;
  color: #ffffff !important;
}
.web_btn.btn_bdr_blue:hover {
  background: #56bdda;
  color: #ffffff !important;
}
.web_btn.btn_fil_orange {
  background: #e5a923;
  color: #ffffff !important;
  border: 1px solid #da9e29;
}
.web_btn.btn_fil_orange:active,
.web_btn.btn_fil_orange:focus {
  background: #e5a923;
}
.web_btn.btn_bdr_orange {
  border: 1px solid #da9e29;
}
.web_btn.btn_bdr_orange:hover {
  background: #e5a923;
  color: #ffffff !important;
}
.web_btn.btn_bdr_orange:active,
.web_btn.btn_bdr_orange:focus {
  background: #e5a923;
}
.web_btn.btn_black {
  background: #444444;
  color: #ffffff !important;
}
.web_btn.btn_black:hover {
  background: #333333;
}
.btn_tab {
  background: #ffffff;
  box-shadow: none;
  border: 1px solid #56bdda;
  padding: 0 26px;
  line-height: 36px;
  border-radius: 36px;
  margin-right: 10px;
  font-size: 14px;
  color: #222222 !important;
  text-transform: capitalize;
  font-weight: 100;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.btn_tab.active {
  color: #56bdda !important;
  text-decoration: underline;
  border-color: #56bdda !important;
}
.btn_tab.btn_tab_normal {
  border-color: #afafaf;
}
.btn_tab:hover {
  border-color: #56bdda !important;
}
.checkbox-group {
  display: inline-block;
}
.checkbox-group [type="checkbox"]:not(:checked),
.checkbox-group [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.checkbox-group input[type="checkbox"],
.checkbox-group input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
.checkbox-group [type="checkbox"] + label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  color: #222222;
  font-weight: 400 !important;
  font-size: 14px;
  letter-spacing: 0.085em;
  line-height: 1;
  text-align: left;
  background-color: transparent;
  margin-bottom: 0 !important;
  padding-right: 35px;
}
.checkbox-group [type="checkbox"] + label:before,
.checkbox-group [type="checkbox"] + label:after {
  box-sizing: content-box;
}
.checkbox-group [type="checkbox"] + label:before {
  top: 0px;
  margin-right: 10px;
  border-radius: 2px;
  margin-top: -3px;
  width: 4px;
  height: 12px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #56bdda;
  border-bottom: 2px solid #56bdda;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  -moz-transform: rotate(50deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  opacity: 0;
  transition: opacity 0.3s ease !important;
  -webkit-transition: opacity 0.3s ease !important;
  -moz-transition: opacity 0.3s ease !important;
  -ms-transition: opacity 0.3s ease !important;
}
.checkbox-group [type="checkbox"]:checked + label:before,
.checkbox-group [type="checkbox"]:hover + label:before {
  opacity: 1;
}
.checkbox-group [type="checkbox"]:checked + label:before {
  border-right: 2px solid #ffffff !important;
  border-bottom: 2px solid #ffffff !important;
}
.checkbox-group [type="checkbox"].filled-in:not(:checked) + label:after {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #afafaf;
  top: -2px;
  z-index: 0;
}
.checkbox-group [type="checkbox"].filled-in + label:before,
.checkbox-group [type="checkbox"].filled-in + label:after {
  content: '';
  right: 0;
  position: absolute;
  transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
  z-index: 1;
  top: -2px;
}
.checkbox-group [type="checkbox"].filled-in:checked + label:after {
  top: -2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #56bdda;
  background-color: #56bdda;
  z-index: 0;
}
.checkbox-group.text-right [type="checkbox"] + label {
  padding-left: 35px;
  padding-right: 0;
}
.checkbox-group.text-right [type="checkbox"] + label:after,
.checkbox-group.text-right [type="checkbox"] + label:before {
  left: 0;
  right: auto;
}
.checkbox-group [type="radio"]:not(:checked),
.checkbox-group [type="radio"]:checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.checkbox-group [type="radio"] + label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  color: #222222;
  font-weight: 400 !important;
  font-size: 14px;
  letter-spacing: 0.085em;
  line-height: 1;
  text-align: left;
  background-color: transparent;
  margin-bottom: 0 !important;
  padding-right: 35px;
}
.checkbox-group [type="radio"] + label:before,
.checkbox-group [type="radio"] + label:after {
  box-sizing: content-box;
}
.checkbox-group [type="radio"] + label:before {
  top: 0px;
  margin-right: 10px;
  border-radius: 2px;
  margin-top: -3px;
  width: 4px;
  height: 12px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #56bdda;
  border-bottom: 2px solid #56bdda;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  -moz-transform: rotate(50deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  opacity: 0;
  transition: opacity 0.3s ease !important;
  -webkit-transition: opacity 0.3s ease !important;
  -moz-transition: opacity 0.3s ease !important;
  -ms-transition: opacity 0.3s ease !important;
}
.checkbox-group [type="radio"]:checked + label:before,
.checkbox-group [type="radio"]:hover + label:before {
  opacity: 1;
}
.checkbox-group [type="radio"]:checked + label:before {
  border-right: 2px solid #ffffff !important;
  border-bottom: 2px solid #ffffff !important;
}
.checkbox-group [type="radio"].filled-in:not(:checked) + label:after {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #afafaf;
  top: -2px;
  z-index: 0;
}
.checkbox-group [type="radio"].filled-in + label:before,
.checkbox-group [type="radio"].filled-in + label:after {
  content: '';
  right: 0;
  position: absolute;
  transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
  z-index: 1;
  top: -2px;
}
.checkbox-group [type="radio"].filled-in:checked + label:after {
  top: -2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #56bdda;
  background-color: #56bdda;
  z-index: 0;
}
.checkbox-group.text-right [type="radio"] + label {
  padding-left: 35px;
  padding-right: 0;
}
.checkbox-group.text-right [type="radio"] + label:after,
.checkbox-group.text-right [type="radio"] + label:before {
  left: 0;
  right: auto;
}
.web_headline {
  font-size: 30px;
  padding-bottom: 25px;
  font-weight: 500;
}
/******************* font sizes *****************************/
.fs-42 {
  font-size: 42px;
}
.fs-30 {
  font-size: 30px;
}
.fs-28 {
  font-size: 28px;
}
.fs-24 {
  font-size: 24px;
}
.fs-18 {
  font-size: 18px;
}
.fs-14 {
  font-size: 14px;
}
/******************* font weight *****************************/
.f-300 {
  font-weight: 300;
}
.f-400 {
  font-weight: 400;
}
.f-500 {
  font-weight: 500;
}
.f-600 {
  font-weight: 600;
}
.f-700 {
  font-weight: 700;
}
/******************* font case &amp; alignment *****************************/
.uCase {
  text-transform: uppercase;
}
.lCase {
  text-transform: lowercase;
}
.txtCenter {
  text-align: center;
}
.txtLeft {
  text-align: left;
}
.txtRight {
  text-align: right;
}
/******************* Margins *****************************/
.m-top-10 {
  margin-top: 10px;
}
.m-top-15 {
  margin-top: 15px;
}
.m-top-20 {
  margin-top: 20px;
}
.m-top-25 {
  margin-top: 25px;
}
.m-top-30 {
  margin-top: 30px;
}
.m-btm-10 {
  margin-bottom: 10px;
}
.m-btm-15 {
  margin-bottom: 15px;
}
.m-btm-20 {
  margin-bottom: 20px;
}
.m-btm-25 {
  margin-bottom: 25px;
}
.m-btm-30 {
  margin-bottom: 30px;
}
.m-left-10 {
  margin-left: 10px;
}
.m-left-15 {
  margin-left: 15px;
}
.m-left-20 {
  margin-left: 20px;
}
.m-left-25 {
  margin-left: 25px;
}
.m-left-30 {
  margin-left: 30px;
}
.m-right-10 {
  margin-right: 10px;
}
.m-right-15 {
  margin-right: 15px;
}
.m-right-20 {
  margin-right: 20px;
}
.m-right-25 {
  margin-right: 25px;
}
.m-right-30 {
  margin-right: 30px;
}
/******************* Paddings *****************************/
.p-top-10 {
  padding-top: 10px;
}
.p-top-15 {
  padding-top: 15px;
}
.p-top-20 {
  padding-top: 20px;
}
.p-top-25 {
  padding-top: 25px;
}
.p-top-30 {
  padding-top: 30px;
}
.p-btm-10 {
  padding-bottom: 10px;
}
.p-btm-15 {
  padding-bottom: 15px;
}
.p-btm-20 {
  padding-bottom: 20px;
}
.p-btm-25 {
  padding-bottom: 25px;
}
.p-btm-30 {
  padding-bottom: 30px;
}
.p-left-10 {
  padding-left: 10px;
}
.p-left-15 {
  padding-left: 15px;
}
.p-left-20 {
  padding-left: 20px;
}
.p-left-25 {
  padding-left: 25px;
}
.p-left-30 {
  padding-left: 30px;
}
.p-right-10 {
  padding-right: 10px;
}
.p-right-15 {
  padding-right: 15px;
}
.p-right-20 {
  padding-right: 20px;
}
.p-right-25 {
  padding-right: 25px;
}
.p-right-30 {
  padding-right: 30px;
}
p {
  font-family: 'Merriweather', serif;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0;
}
.new1 {
  margin: 0 0;
}

/** New Event popup design starts here  */
.newpopup.fade.in .modal-dialog .modal-header {
    padding: 0;
    border-bottom: none
}

.newpopup.fade.in .modal-dialog .modal-header .close {
    font-size: 20px;
    top: 20px!important;
    left: auto!important;
    right: 35px!important
}

.newpopup .modal-body {
    padding: 0
}

.newpopup .eventPop {
    padding: 60px 50px 30px;
    position: relative
}

.newpopup .eventPop .popHeader {
/*     overflow: hidden; */
    position: -webkit-sticky;
    position: sticky;
    top: -1px;
    left: 0;
    right: 0;
    margin: auto 0;
    padding-bottom: 30px;
    padding-top: 30px;
    background-color: #fff;
    margin-top: -30px;
    z-index: 9
}

.newpopup .eventPop .popHeader .popMainHead {
    display: inline-block;
    vertical-align: middle;
    font-size: 30px;
    line-height: 37px;
    font-weight: 400;
    position: relative
}

.newpopup .eventPop .popHeader .popMainHead:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 25px;
    height: 1px;
    background-color: #56BDD9
}

.newpopup .eventPop .popHeader .headBtn {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0;
    margin-left: auto;
    text-align: right;
    float: right;
    /*overflow: hidden;*/
    overflow: visible;
    position: relative;
}

.newpopup .eventPop .popbnr {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 433px;
    border-radius: 5px;
    position: relative;
    margin-bottom: 35px
}

.newpopup .eventPop .popbnr .popbnrCnt {
    position: absolute;
    bottom: 0;
    padding: 0 50px 40px;
    width: 100%
}

.newpopup .eventPop .popbnr .popbnrCnt .leftcont {
    width: calc(100% - 230px);
    vertical-align: middle;
    display: inline-block
}

.newpopup .eventPop .popbnr .popbnrCnt .leftcont span {
    color: #fff;
    line-height: 20px;
    padding-bottom: 10px;
    display: inline-block
}

.newpopup .eventPop .popbnr .popbnrCnt .leftcont h4 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px
}

.newpopup .eventPop .popbnr .popbnrCnt .leftcont p {
    color: #fff;
    width: 525px;
    max-width: 100%;
    line-height: 27px;
    font-family: Montserrat, sans-serif
}

.newpopup .eventPop .popbnr .popbnrCnt .popbnrlogo {
    vertical-align: middle;
    display: inline-block;
	width: 210px;
}

.newpopup .eventPop .popbnr .popbnrCnt .popbnrlogo img {
    width: 100%
}

.newpopup .eventPop .headBar {
    background-color: #F5F6F7;
    padding: 16px
}

.newpopup .eventPop .headBar i {
    font-size: 22px;
    color: #56BDD9;
    display: inline-block;
    vertical-align: middle
}

.newpopup .eventPop .headBar p {
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    font-family: Montserrat, sans-serif
}

.newpopup .eventPop .adrsDiv {
    padding: 40px
}

.newpopup .eventPop .adrsDiv .contentHd {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px
}

.newpopup .eventPop .adrsDiv .cntText {
    font-family: Montserrat, sans-serif
}

.newpopup .eventPop .adrsDiv .cntText span {
	width: 50%;
	display: inline-block;
}

.newpopup .eventPop .adrsDiv .popwtBtn {
    margin-top: 25px
}
.newpopup .eventPop .adrsDiv .pricebox_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 -6px;
}
.newpopup .eventPop .adrsDiv .priceboxDiv {
    border-radius: 5px;
    padding: 10px;
    min-width: 185px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border: 1px solid #CBCBCB;
    margin: 0 6px 12px;
}


.newpopup .eventPop .adrsDiv .priceboxDiv .usdTxt {
    font-family: Montserrat, sans-serif;
    color: #56BDD9
}

.newpopup .eventPop .adrsDiv .priceboxDiv .gradeTxt {
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    line-height: 1
}

.newpopup .eventPop .adrsDiv .nav-tabs {
    border-bottom: none
}

.newpopup .eventPop .adrsDiv .nav-tabs li {
    margin-bottom: 0;
    width: 126px;
    margin-right: 5px
}

.newpopup .eventPop .adrsDiv .nav-tabs li a {
    padding: 6px;
    border-radius: 5px
}

.newpopup .eventPop .adrsDiv .nav-tabs li a .tabImg {
    border-radius: 5px
}

.newpopup .eventPop .adrsDiv .nav-tabs li a .tabImg p {
    line-height: 1.5;
    color: #707070;
    text-align: center;
	min-height: 64px;
}

.newpopup .eventPop .adrsDiv .nav-tabs li.active a,
.newpopup .eventPop .adrsDiv .nav-tabs li:hover a {
    border: 1px solid #E6E6E6;
    background-color: #F8F8F8
}

.newpopup .eventPop .adrsDiv .tab-content&gt;div {
    margin-top: 31px
}

.newpopup .eventPop .adrsDiv .tab-content&gt;div p {
    font-family: Montserrat, sans-serif;
    color: #585858;
    line-height: 32px
}

.newpopup .eventPop .line {
    margin: 0
}

.newpopup .eventPop .popfooter {
    padding-top: 33px;
	overflow: hidden;
}

.newpopup .eventPop .popfooter&gt;div {
    display: inline-block
}

.newpopup .eventPop .popfooter p {
    font-family: Montserrat, sans-serif;
    display: block
}

.newpopup .eventPop .popfooter h3 {
    color: #E5A923;
    font-style: italic;
    font-size: 18px;
    display: block
}

.newpopup .eventPop .popfooter a {
    float: right;
    width: 195px;
    text-transform: capitalize
}

.newpopup .eventPop .popwtBtn {
    min-width: 138px;
    padding: 0 30px;
    background: #fff;
    color: #222!important;
    line-height: 48px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    vertical-align: middle;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    border: 1px solid #34adcc;
    background-color: transparent;
    margin: 0 10px;
    overflow: hidden;
    position: relative;
    user-select: none;
    outline: 0;
	z-index: 5;
}

.newpopup .eventPop .popwtBtn:hover {
    background: #56bdda;
    color: #fff!important
}

.newpopup .eventPop .popcolorBtn {
    min-width: 160px;
    padding: 0 30px;
    background: #fff;
    color: #222!important;
    line-height: 48px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid #222;
    vertical-align: middle;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    background: #56bdda;
    color: #fff!important;
    border: 1px solid #34adcc;
    margin: 0 10px
}
.newpopup .eventPop .adrsDiv .feeText {
    font-weight: 400;
    margin-top: 15px;
    font-size: 14px;
}
.newpopup .eventPop .adrsDiv .feeText br{
	display: block;
}

@media only screen and (max-width:1279px) {
    .newpopup .eventPop .popbnr .popbnrCnt {
        padding: 0 30px 30px
    }
    .newpopup .eventPop .adrsDiv .popwtBtn {
        min-width: 170px;
        padding: 0 20px
    }
    .newpopup .eventPop .adrsDiv {
        padding: 20px
    }
    .newpopup .eventPop .adrsDiv .priceboxDiv {
        /*width: 18.5%;*/
        margin-left: 0!important;
    }
	.newpopup .eventPop .adrsDiv .cntText span{
		width: auto;
		margin-right: 20px;
	}
	.newpopup .modal-body .eventPop .popHeader .headBtn .sharethis-inline-share-buttons {
		top: 61px;
		width: auto;
		left: 0;
	}
}

@media only screen and (max-width:991px) {
    .newpopup .eventPop .popHeader .popMainHead {
        font-size: 24px
    }
    .newpopup .eventPop .popwtBtn {
        margin-left: 0
    }
    .newpopup .eventPop .popbnr .popbnrCnt .leftcont {
        width: calc(100% - 160px)
    }
    .newpopup .eventPop .popbnr .popbnrCnt .popbnrlogo {
        width: 150px
    }
    .newpopup .eventPop .popbnr {
        margin-bottom: 25px;
        padding-bottom: 270px
    }
    .newpopup .eventPop .adrsDiv .priceboxDiv {
		/* width: 31.5%; */
        margin-top: 15px
    }
    .newpopup .eventPop .adrsDiv .priceboxDiv:nth-of-type(4) {
        margin-left: 0
    }
    .newpopup .eventPop .adrsDiv .contentHd {
        margin-bottom: 0
    }
    .newpopup .eventPop .headBar p {
        margin-left: 10px
    }
    .newpopup .eventPop .popfooter a {
        width: 160px;
        padding: 0 20px
    }
}

@media only screen and (max-width:767px) {
    .newpopup .eventPop .popHeader {
        padding-top: 15px;
		padding-bottom: 15px;
    }
    .newpopup .eventPop {
        padding: 40px 30px 20px
    }
    .newpopup .eventPop .popHeader .headBtn {
        margin-top: 20px;
        float: none
    }
    .newpopup.fade.in .modal-dialog .modal-header .close {
        z-index: 99
    }
    .newpopup .eventPop .popbnr .popbnrCnt {
        padding: 0 15px 0
    }
/*     .newpopup .eventPop .popHeader {
        position: static
    } */
    .newpopup .eventPop .popbnr .popbnrCnt .leftcont p {
        line-height: 23px
    }
    .newpopup .eventPop .adrsDiv {
        padding: 20px 0
    }
    .newpopup .eventPop .popfooter a {
        float: none;
        margin-top: 20px
    }
    .newpopup .eventPop .popcolorBtn,
    .newpopup .eventPop .popwtBtn {
        padding: 0 15px;
        line-height: 42px
    }
    .newpopup .eventPop .adrsDiv .priceboxDiv .usdTxt {
        line-height: 1.5
    }
}

@media only screen and (max-width:640px) {
    .newpopup .eventPop .popbnr .popbnrCnt .leftcont h4 {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 10px
    }
    .newpopup .eventPop .popbnr .popbnrCnt .leftcont p {
        line-height: 20px;
        height: 42px;
        overflow: hidden
    }
    .newpopup .eventPop .popbnr .popbnrCnt .leftcont {
        width: calc(100% - 105px)
    }
    .newpopup .eventPop .popbnr .popbnrCnt .popbnrlogo {
        width: 100px
    }
    .newpopup .eventPop .popbnr {
        margin-bottom: 15px;
        padding-bottom: 200px
    }
    .newpopup .eventPop .headBar {
        padding: 10px
    }
    .newpopup .eventPop .headBar p {
        font-size: 16px
    }
    .newpopup .eventPop .adrsDiv .popwtBtn {
        margin-top: 15px
    }
    .newpopup .eventPop .popwtBtn {
        margin-right: 0
    }
    .newpopup .eventPop .adrsDiv .priceboxDiv {
        width: 47.5%
    }
    .newpopup .eventPop .adrsDiv .priceboxDiv:nth-of-type(4) {
        margin-left: 10px
    }
    .newpopup .eventPop .adrsDiv .priceboxDiv:nth-of-type(3),
    .newpopup .eventPop .adrsDiv .priceboxDiv:nth-of-type(5) {
        margin-left: 0
    }
    .newpopup .eventPop .popfooter&gt;div {
        display: none
    }
    .newpopup .eventPop .popfooter {
        padding-top: 20px
    }
    .newpopup .eventPop .popfooter a {
        margin: 0 auto;
        display: block
    }
}

@media only screen and (max-width:640px) {
    .newpopup .eventPop .popHeader .popMainHead {
        font-size: 20px;
        line-height: 30px
    }
    .newpopup .eventPop {
        padding: 40px 15px 20px
    }
    .newpopup .eventPop .popcolorBtn,
    .newpopup .eventPop .popwtBtn {
        min-width: 100px;
        padding: 0 10px;
        line-height: 38px;
        font-size: 13px
    }
    .newpopup .eventPop .popbnr .popbnrCnt .leftcont h4 {
        font-size: 16px;
        line-height: 1;
        margin-bottom: 6px
    }
    .newpopup .eventPop .popbnr .popbnrCnt .leftcont span {
        line-height: 18px;
        padding-bottom: 5px
    }
    .newpopup .eventPop .popbnr .popbnrCnt .popbnrlogo {
        width: 60px;
        margin-top: 50px
    }
    .newpopup .eventPop .popbnr .popbnrCnt .leftcont {
        width: calc(100% - 65px)
    }
    .newpopup .eventPop .popbnr {
        padding-bottom: 160px
    }
}

@media only screen and (max-width:640px) {
    .newpopup .eventPop .popcolorBtn,
    .newpopup .eventPop .popwtBtn {
        margin-left: 0;
        margin-right: 0
    }
    .newpopup .eventPop .adrsDiv .priceboxDiv {
        width: 46.5%
    }
    .newpopup .eventPop .adrsDiv .nav-tabs li {
        width: 122px
    }
}

@media only screen and (max-width:480px) {
	.newpopup .eventPop .adrsDiv .priceboxDiv {
		width: 100%;
	}
}
/* New style added by sachin for the share buttons */
.newpopup .eventPop .popHeader .headBtn .sharethis-inline-share-buttons {
    position: absolute;
}

.newpopup .eventPop .popHeader .headBtn .sharethis-inline-share-buttons .at-resp-share-element .at-share-btn .at-label {
	display: none !important;
}

.newpopup .eventPop .popHeader .headBtn .sharethis-inline-share-buttons .at-style-responsive .at-share-btn {
	border-radius: 50px !important;
}

.newpopup .eventPop .popHeader .headBtn .sharethis-inline-share-buttons {
    position: absolute;
    top: 4px;
    z-index: 3 !important;
    width: auto;
    left: -280px;
    display: none;
}

.sharethis-inline-share-buttons .st-btn {
  display: inline-block !important;
}


.newpopup .eventPop .popHeader {
   overflow: visible !important;
}


#upload_completed {
    width: 100%;
    display: block;
    float: left;
    padding-bottom: 10px;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    color: #00627e;
}</pre></body></html>