/*** GENERAL LAYOUT CSS ***/
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,400,400i,600,700');


/*** ICONS CSS ***/
@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?5yyhf6');
    src: url('../fonts/icomoon.eot?5yyhf6#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?5yyhf6') format('truetype'),
    url('../fonts/icomoon.woff?5yyhf6') format('woff'),
    url('../fonts/icomoon.svg?5yyhf6#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-card:before {
    content: "\e900";
}

.icon-logout:before {
    content: "\e901";
}

.icon-password:before {
    content: "\e902";
}

.icon-pin:before {
    content: "\e903";
}

.icon-profile:before {
    content: "\e904";
}

/*** END ICONS CSS ***/



html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    background: #fff;
    font-family: 'Titillium Web', sans-serif;
    font-size:16px;
    color: #000;
    margin: 0;
    padding: 0;
    min-height:calc(100vh - 70px);
    position: relative;
}

a {
    text-decoration: none !important;
    color: #fff;
    outline: 0;
}

a:hover, a:active, a:visited, a:focus {
    color: #fff;
    outline: 0 !important;
}

.wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center !important;
    min-height:100%;
}

header {
    width: 100%;
    padding: 0 0 30px;
   /* height: 144px;*/
    /* background:#222222; */
    background:#FF7527;
}

.login header {
    margin: 0 auto !important;
    height: auto !important;
    border-bottom: none !important;
}


nav {
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 300;
    float: right;
}

nav ul {
    margin: 0;
    height: 100%;
    padding: 0;
    display:block;
}

nav ul li {
    display: inline-block;
    height: 100%;
    padding: 0;
    margin:40px 15px 0;
    font-size:20px;
    font-weight:bold;
    color:#fff;
}

nav ul a {
    color: inherit;
}

nav ul li:hover, nav ul li:focus, nav ul li:visited {
    border-bottom:3px solid #fff;
    outline: 0;
}

nav .active {
    background: transparent;
    border-bottom:3px solid #fff;
    outline: 0;
}

.icon-logout {
    font-size: 30px;
}

.main {
    width: 60%;
    margin: 2em auto 1.5em;
    text-align: center;
}

.title {
    font-weight: 700;
    font-size: 30px;
    margin: 10px 0;
}

.subTitle {
    font-size: 28px;
    font-weight:700;
    text-align: center;
}

.titleline {
    width: 70px;
    height: 3px;
    background: #fff;
    margin: 0 auto 20px auto;
}

p {
    font-size: 17px;
    font-weight: 300;
    line-height:1.5;
}

.text {
    font-weight: 300;
    font-size: 17px;
    color:#000;
    margin: 10px 0 25px 0;
    opacity: 1;
}

h5 {
    font-size: 20px;
    font-weight: 400;
}

.module {
    margin: 20px 0;
}

.error {
    background: rgba(233, 30, 30, 0.72);
    border: 1px solid red;
    padding: 5px !important;
    margin: 2px 0 10px 0 !important;
    color: #fff !important;
    position: relative;
    float: left;
    width: 100%;
}

table {
    border-collapse: collapse;
}

table td {
    /*border: 1px solid rgba(255, 255, 255, 0.3);*/
    padding: 20px;
}

table td.left {
    text-align: left;
}

table td.right {
    text-align: right;
}

footer {
    padding: 10px 0;
    /* background-color: #222222; */
    background-color: #FF7527;
    position:absolute;
    bottom: -137px !important;
    left:0;
    width:100%;
}
footer img {
    max-height:45px;
}
footer p {
    display:inline-block;
    font-size: 18px;
    font-weight:400;
    color:#fff;
}

footer a {
    font-size: 18px;
    color:#fff;
}
footer a:hover {
    color: #eaeaea;
}
footer.login-footer {
    background-color: transparent;
    position:static;
}
footer.login-footer p,
footer.login-footer a,
footer.login-footer a:hover {
    font-size:15px;
    color:#000;
}

.login-footer2 {
    background-color: #f98e2e!important;
    position:static;
}
/*** end GENERAL LAYOUT CSS ***/

/*** FORMS CSS ***/ 


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

#join-form input[type="text"],
#join-form input[type="number"],
#join-form input[type="tel"],
#join-form input[type="date"],
#join-form input[type="email"],
select {
    border:1px solid #7b7b7b;
    font-size:16px !important;
    line-height:1.5;
    color:#333;
    padding:8px 10px;
}
#join-form input:focus[type="text"],
#join-form input:active[type="text"],
#join-form input:focus[type="number"],
#join-form input:active[type="number"],
#join-form input:focus[type="tel"],
#join-form input:active[type="tel"],
#join-form input:focus[type="date"],
#join-form input:active[type="date"],
#join-form input:focus[type="email"],
#join-form input:active[type="email"],
#join-form textarea:active,
#join-form textarea:focus {
    -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
    outline:none;
}
.input-wide {
    min-width:375px;
}

.mandatory:after {
    content: ' *';
    color: red;
}

input, select, textarea, .btn {
    padding: 8px 10px;
    outline: none;
    border: 1px solid #7b7b7b;
    background: #ffffff;
    color: #000;
    font-size: 16px;
    font-family: 'Titillium Web', sans-serif;
    font-weight: 400;
    display: block;
    margin: 2px auto 10px auto;
    width: 100%;
    border-radius: 0;
}

input[type=checkbox] {
    width: 20px;
    display: inline-block;
    vertical-align: middle;
}

select {
    -webkit-appearance: normal;
}

textarea {
    height: 200px !important;
}

input:focus, select:focus, textarea:focus {
    background: #ffffff;
    outline: 0;
    -webkit-box-shadow: 0 2px 5px #ccc;
    -moz-box-shadow: 0 2px 5px #ccc;
    box-shadow: 0 2px 5px #ccc;
}


input[type="date"] {
    display: block;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    min-height: 1.2em;
}

.btn {
    text-align: center;
    line-height: 1.8em;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    outline:none;
    border:none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.btn:focus {
    outline: none;
}
.btnPrimary {
    background: #de2a57;
    font-size:24px;
    height:auto;
    width:100%;
    max-width: 170px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin: 30px auto 5px auto;
    border-radius: 0;
    border:none;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.btnPrimary:hover {
    opacity: 0.8;
    color:#fff;
}
.btnPrimary:active,
.btnPrimary:focus {
    opacity: 0.8;
    color:#fff;
}
.btnGrey {
    background: #494949;
    text-transform: uppercase;
    color:#fff;
    font-size:18px;
    font-weight:bold;
    display:inline-block;
    width:auto;
    padding:5px 25px;
    max-width:200px;
    position: relative;
    top: 1px;
}
.btnGrey:hover {
    opacity:0.8;
    color:#fff;
}
.btnGrey:focus,
.btnGrey:active {
    color:#fff;
}

.btnOrange {
    background: #f86117;
    color: white;
    max-width: 170px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
}

.ui-datepicker-trigger {
    position: absolute;
    display: inline;
    right: 5px;
    bottom: 18px;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
    display: inline-block;
}
/*** end FORMS CSS ***/

/*** LOGIN PAGES CSS ***/
.login header {
    padding-top: 1%;
    border: 0 !important;
}

.page .login .logo {
    margin: 0 auto;
}

.login header {
    margin: 0 auto;
    height: auto;
}

.page .login header {
    border-bottom: none;
    text-align: center;
    background:#fff;
}

.page .login .logo {
    display: block;
    width: 100%;
    margin: 0;
}

.page .login .logo img {
    max-height: 100%;
    height: auto;
}

.loginForm {
    text-align: left;
    width: 65%;
    margin: 30px auto 0;
}

.login .main {

}
/*** end LOGIN PAGE CSS ***/

/*** REGISTER POPUP CSS ***/
.registerPopup {
    background: rgba(0, 0, 0, 0.5);
    min-height: 100vh;
}

.registerPopup .logo {
    display: none;
}

.registerPopup input, .registerPopup select {
    background: rgba(255, 255, 255, 0.2);
}

.registerPopup .btnPrimary {
    background: #fff;
}

a.link p {
    text-decoration: none;
    margin: 0 auto;
    color: #fff;
    opacity: 0.5;
    font-size: 13px;
    text-align: center !important;
}

.link:hover {
    opacity: 1;
}
/*** REGISTER POPUP CSS ***/

/*** BALANCE PAGE CSS ***/
.container.balance,
.container.transactions,
.container.manage {
    padding:0 20px;
}
.welcome {
    font-size: 20px;
}
.availableBalance {
    width: 270px;
    height: 270px;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    border-radius: 150px;
    margin: 0 auto;
    padding: 90px 0;
}
.availableBalance h3 {
    font-weight: 300;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}
.availableBalance span {
    font-size: 64px;
    line-height: 60px;
    font-weight: 300;
}


.transTitle {
    font-size: 22px;
    font-weight:700;
    line-height: 25px;
    margin: 0;
}

.transInfo {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.cardInfo {
    padding: 15px;
}

.cardInfo p {
    margin: 0;
}

/*** end BALANCE PAGE CSS ***/

/*** MANAGE ACC PAGE CSS ***/
.manageAcc .main a {
    color: #fff;
    text-decoration: none;
}

.manageAcc .icon {
    font-size: 100px;
}

.box {
    min-width: 23%;
    display: inline-block;
    margin: 15px 5px 0px 5px;
    padding: 15px 5px 5px 5px;
}

.box h4 {
    text-transform: uppercase;
}
/*** end MANAGE ACC PAGE CSS ***/

/*** MODAL ***/
.modal-dialog {
    text-align: center !important;
    color: #000;
    width: 90vw;
}

.modal-tnc p {
    font-size: 12px;
}
.modal-tnc li {
    font-size: 12px;
}

.modal-ul {
    font-size: 1.3rem;
    columns: auto 160px;
    -webkit-columns: auto 160px;
    -moz-columns: auto 160px;
    list-style: none; 
    padding: 0;
}

.modal-header {
    color: #000;
    border: none;
}

.modal-title .h4.modal-title.ng-binding {
    font-weight: bold;
    font-size: 18px;
}

.modal-title:after {
    content: "";
    background: #000;
    height: 3px;
    width: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 5px;
}

.modal-content {
    border-radius: 0;
}

.modal-body {
    font-size: 16px;
    line-height: 22px;
    color: #3A3A3A;
}

.modal-footer {
    border: none;
}

.modal-footer .btn {
    border-radius: 0;
    border:none;
    background: #de2a57;
    height:auto !important;
    color: #fff;
    font-weight: bold;
    font-size:24px;
}
.modal-footer .btn + .btn {
    margin: 0;
}
.modal-emailModal {
    max-width:440px;
}
.modal-emailModal h3 {
    font-size:35px;
    font-weight:600;
}
.modal-emailModal .btn {
    display:block;
    width:60%;
    padding: 8px 16px;
    font-size:17px;
    font-weight:700;
    text-transform: uppercase;
}

.modal-search {
    width: 95%;
}

.modal-dropdown {
    border: 1px solid #ccc;
    background-color: #fff;
    position: absolute;
    width: 100%;
    z-index: 100;
    padding: 0;
    list-style: none;
    width: 90%;
    left: 5%;
    right: 5%;
}

.modal-dropdown li {
    padding: 5px;
}

.modal-dropdown li:hover {
    background-color: #f0f0f0;
}

/*** end MODAL ***/

/*** ng-messages ***/
div [ng-message="required"],
div [ng-message="alphanumeric"],
div [ng-message="alphaNumOnly"],
div [ng-message="frequencyNotSelected"],
div [ng-message="areEqual"],
div [ng-message="email"],
div [ng-message="url"],
div [ng-message="maxBelowMin"],
div [ng-message="pattern"],
div [ng-message="numOnly"],
div [ng-message="letterOnly"],
div [ng-message="notMatch"],
div [ng-message="maxDate"],
div [ng-message="emailNotEmpty"],
div [ng-message="negative"],
div [ng-message="invalidDate"],
div [ng-message="minlength"],
div [ng-message="maxlength"] {
    color: red;
    font-size: 14px;
    padding: 0;
    margin: -8px 0 0 0;
}
/*** end ng-messages ***/

/* media queries */
@media screen and (max-width: 1300px) {
    .main {
        width: 80%;
    }

    .logo {
        width: 100%;
        text-align: center;
    }

    /*.logo img {
        max-height: 60px;
    }*/
}

/* login screen */

.pre-header p {
    font-size:16px;
    margin-top:20px;
}
.logo h2 {
    font-family:'Titillium Web', Arial, sans-serif;
    font-size:50px;
    font-weight:600;
    color:#f86117;
    margin-bottom:0;
}
.subheading {
    font-size:30px;
    font-weight:300;
    color:#f86117;
}
.login-form-container {
    margin:0 auto;
    padding: 0 30%;
}
.login-left-container {
    width:50%;
    float:left;
    background:#fff url('../imgs/backgroundchristmas.jpg') top right no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
    position:fixed;
    height:100vh;
    text-align: center;
}

.login-left-invert {
    width:50%;
    float:left;
    background:#f98e2e url('../imgs/backgroundorangeinvert.jpg') top right no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
    position:fixed;
    height:100vh;
    text-align: center;
}

.full-height {
    height: 100vh;
    background-color: #f98e2e;
}

.white-text {
    color: white;
}

.dark-bg {
    background-color: #f98e2e!important;
}

.login-graphic {
    background: transparent url('../imgs/hampsta-graphic.png') center center no-repeat;
    width:100%;
    min-height:667px;
    -webkit-background-size:contain;
    background-size:contain;
    position:relative;
    text-align: center;
    top:10%;
    left:5%;
}
.login-right-container {
    width:50%;
    float:right;
    padding-right:5%;
}
.login-right-container::after {
    position: relative;
    display: block;
    clear: both;
}
.hampsta-login-right::after {
    content: '';
    display: block;
    clear: both;
}
.pink-link,
.pink-link:visited {
    color:#de2a57;
    font-weight:bold;
    text-decoration: none;
    border-bottom:1px solid transparent;
    -webkit-transition: border-bottom 0.3s;
    -moz-transition: border-bottom 0.3s;
    -ms-transition: border-bottom 0.3s;
    -o-transition: border-bottom 0.3s;
    transition: border-bottom 0.3s;
}
.pink-link:hover {
    color:#de2a57;
    border-bottom:1px solid #de2a57;
}
.orange-link,
.orange-link:visited,
.orange-link:active {
    color:#FF7527;
    font-weight:bold;
    text-decoration: none;
    border-bottom:1px solid transparent;
    -webkit-transition: border-bottom 0.3s;
    -moz-transition: border-bottom 0.3s;
    -ms-transition: border-bottom 0.3s;
    -o-transition: border-bottom 0.3s;
    transition: border-bottom 0.3s;
}
.orange-link:hover {
    color:#FF7527;
    border-bottom:1px solid #FF7527;
}
label {
    font-size:16px;
    font-weight:normal;
    display:block;
    margin-top:15px;
}
footer a span.footer-logo-img {
    width:112px;
    height:12px;
    display:inline-block;
    position: relative;
    top:1px;
    background: transparent url('../imgs/tranxactor-logo-sm.png') no-repeat center center;
}
/* header */
header {
    width:100%;
    min-width: 180px;
}
.logo {
    float:left;
    width:30%;
    margin-top:24px;
}
.navigation {
    display:inline-block;
    width:70%;
    float:left;
}
.navigation::after {
    position: relative;
    display: block;
    clear: both;
}

.main-menu {
    /* background: #222222; */
    background: #FF7527;
    position:relative;
}
.nav-button {
    background:#fe904d;
    color:#fff;
    padding:10px;
    font-size:18px;
    font-weight:300;
    text-transform:none !important;
}
.arr_back {
    background: transparent url('../imgs/arr_back.png') center center no-repeat;
    width:10px;
    height:18px;
    vertical-align: middle;
    display:inline-block;
}
.top-menu {
    text-align: right;
}
.top-menu li {
    margin:12px 5px 0;
}
.menu-notification-bubble {
    font-size:0.6em;
    padding:4px 8px;
    background-color: #ed1c24;
    color:#fff;
    margin-left: 5px;
    vertical-align: top;
}
#menuitem_shopcart,
#menuitem_shopcart:hover,
#menuitem_shopcart:active,
#menuitem_site:hover {
    border:none !important;
    position: relative;
}
.menu-product-count {
    vertical-align: middle;
    padding:0 8px;
    background:#fea671;
    color:#fff;
    margin-left:15px;
    font-weight: 700;
}
#menuitem_shopcart a {
    color: #fff;
    padding: 10px 12px 10px 40px;
    background:#fe904d url('../imgs/shop_cart.png') left center no-repeat;
    font-size: 18px;
    font-weight: 300;
    text-transform: none !important;
}
.mj-tooltip {
    position: absolute;
    width: 120px;
    background-color: #f1f1f1;
    color: #e23600;
    top: 20px;
    left: -10px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 15px;
    opacity:0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
#menuitem_shopcart:hover .mj-tooltip {
    top:40px;
    opacity:1;
    visibility: visible;
}
.top-menu li:focus, .top-menu li:visited {
    border:none;
    outline:0;
}
button.mobile-menu {
    font-size:24px;
    font-weight: 700;
    color:#fff;
    padding:0 70px 0 10px;
    position: relative;
    border:none;
    background:none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height:60px;
    outline:none;
    display:none;
}
button.mobile-menu::after {
    position: absolute;
    content: '';
    width:60px;
    height:60px;
    top:0;
    right:0;
    background: transparent url(../imgs/mobile_menu.png) center center no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
}
button.mobile-menu.expanded::after {
    background: transparent url(../imgs/mobile_menu_x.png) center center no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
}
/* header end */

.balance-containter {
    border:1px solid #939393;
    background-color: #fff6eb;
}
.balance-left {
    background-color: #f4fbe5;
    padding:35px;
    border-right:1px solid #939393;
    text-align: left;
    min-height: 400px;
}
.balance-right {
    background: #fff6eb url('../imgs/piggybank.png') bottom center no-repeat;
    padding:35px;
    position:relative;
    min-height:400px;
    text-align: left;
}
.balance-containter h4 {
    font-size: 24px;
    font-weight: 700;
    margin:0;
}
.balance-containter h3 {
    font-size: 30px;
    font-weight: 300;
    margin:0;
}
.balance-containter h2 {
    font-size: 60px;
    font-weight: 700;
    margin:0;
}
.balance-containter p {
    font-size: 18px;
    font-weight: 300;
    color:#000;
    margin:0;
}
.text-orange {
    color:#FF7527;
}
.text-green {
    color:#529100;
}
.text-white {
    color:#fff;
}
.orange-strip {
    margin-left:-35px;
    margin-right:-35px;
    background-color: #FF7527;
    padding:10px 0 10px 35px;
}
.piggy-icon {
    background: transparent url('../imgs/piggy_icon.png') center center no-repeat;
    width:76px;
    height:76px;
    display:block;
    position:absolute;
    top:-20px;
    right:-20px;
}
.row.row-eq-height {
    display: flex;
    display:-webkit-flex;
    flex-wrap: wrap;
}
.acc-overview-container {
    background:#fff;
    text-align: left;
    vertical-align: top;
    border:1px solid #939393;
}
.overview-left {
    border-right:1px solid #939393;
    padding:35px;
}
.overview-center {
    border-right:1px solid #939393;
    padding:35px;
}
.overview-right {
    padding:35px;
}
.acc-overview-container h5 {
    font-size:20px;
    font-weight:700;
    color:#000;
    margin:0;
}
.acc-overview-container p {
    font-size:18px;
    line-height:25px;
    margin:0;
}
.transactions-history {
    border-bottom:none;
    margin-left: -15px;
    margin-right: -15px;
}
.transaction-row {
    border:1px solid #939393;
    border-bottom:none;
    margin:0;
}
.transaction-row:last-child {
    border-bottom:1px solid #939393;
}
.transaction-row .overview-left {
    padding:20px;
    text-align: left;
}
.transaction-row .overview-center,
.transaction-row .overview-right {
    padding:20px;
    text-align: right;
}
.transactions-history+.pink-link {
    margin-top:20px;
}
.hampsta-title {
    font-size:55px;
    font-weight:600;
    color:#FF7527;
    margin:15px auto 15px auto;
}
.trans-header {
    background:#f5f5f5;
    padding:20px;
    text-align: left;
}
.trans-header h5 {
    font-size:16px;
    font-weight:700;
}
.trans-header p {
    font-size:15px;
    font-weight:400;
}
.pink-heading {
    margin-top:20px; margin-bottom:24px; color:#e3577a; font-weight: 700;
}
.trans-history {
    vertical-align: middle;
    padding:30px 0;
}
.inputSmall {
    display: inline-block !important;
    position: relative;
    width:100%;
}
.inputhalf {
    display: inline-block !important;
    position: relative;
    width:auto;
}
.trans-history label,
.trans-history input {
    display:inline-block;
    margin-right:15px;
    max-width:200px;
    font-size:18px;
    font-weight:normal;
}
.manageButton {
    padding: 25px 10px 20px;
    min-width: 190px;
    display: inline-block;
    margin: 15px 15px 0;
    border: 1px solid #b7b7b7;
    background-color: #fafafa;
}
.manageButton:hover {
    background-color: #fff;
}
.manageButton h4 {
    color:#FF7527;
    text-transform: none !important;
    font-weight:600;
}
button.sidebar-expand {
    width:100%;
    background:none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline:none;
    font-size:22px;
    font-weight:normal;
    color:#FF7527;
    text-align: left;
    padding:15px;
    border:1px solid #b7b7b7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    display: none;
}
.burger-button {
    width:40px;
    height:4px;
    background-color: #FF7527;
    position: absolute;
    top:50%;
    right:10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.burger-button::before {
    position: absolute;
    content: '';
    width:40px;
    height:4px;
    background-color: #FF7527;
    top:-10px;
    -webkit-transition: top 0.3s, transform 0.2s;
    -moz-transition: top 0.3s, transform 0.2s;
    -ms-transition: top 0.3s, transform 0.2s;
    -o-transition: top 0.3s, transform 0.2s;
    transition: top 0.3s, transform 0.2s;
}
.burger-button::after {
    position: absolute;
    content: '';
    width:40px;
    height:4px;
    background-color: #FF7527;
    top:10px;
    -webkit-transition: top 0.3s, transform 0.2s;
    -moz-transition: top 0.3s, transform 0.2s;
    -ms-transition: top 0.3s, transform 0.2s;
    -o-transition: top 0.3s, transform 0.2s;
    transition: top 0.3s, transform 0.2s;
}
button.sidebar-expand.expanded .burger-button {
    background-color: transparent;
}
button.sidebar-expand.expanded .burger-button::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top:0;
}
button.sidebar-expand.expanded .burger-button::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top:0;
}
.sidebar-button h4 {
    color:#FF7527;
    text-transform: none !important;
    font-weight:600;
    margin-bottom:30px;
}
.sidebar-button {
    padding: 25px 0 20px;
    min-width: 190px;
    display: inline-block;
    margin: 15px 0;
    border: 1px solid #b7b7b7;
    background-color: #fff;
    width:100%;
}

a > .sidebar-button {
    background-color: #fafafa;
}
.sidebar-button a {
    padding:10px 20px;
    background:transparent;
    display:block;
    color:#000;
    font-size:18px;
    text-align: left;
    font-weight:bold;
    position: relative;
    cursor:pointer;
}
.sidebar-button a:hover {
    background:#f3f3f3;
}
.sidebar-button a:hover::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #000000;
    position:absolute;
    content: '';
    top:50%;
    right:20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.inline-label {
    display:inline;
    margin: 0 20px 0 10px;
    top: -3px;
    position: relative;
}
.manage-content {
    text-align: left;
    padding:0 30px;
}
.manage-content form {
    margin:0 0 80px;
}
.manage-content form .subTitle {
    font-size:24px;
    text-align: left;
    margin:10px 0;
}
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    width:20px;
    height:20px;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    border:1px solid #7b7b7b;
    outline:none;
    background:#fff;
    display:inline-block;
}
input[type="radio"]:checked::after {
    display: block;
    content: '';
    position: absolute;
    width:10px;
    height:10px;
    top:4px;
    left:4px;
    text-align: center;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    background-color: #de2a57;

}
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    width:20px;
    height:20px;
    border:1px solid #7b7b7b;
    outline:none;
    display: inline-block;
    margin:5px 0 15px;
}
input[type="checkbox"]:checked::after {
    display: block;
    content: '';
    position: absolute;
    width:12px;
    height:12px;
    top:3px;
    left:3px;
    text-align: center;
    background-color: #de2a57;

}
.inline-button {
    display:inline-block !important;
    padding:8px 20px !important;
    margin:10px 20px 10px 0 !important;
    font-size:18px !important;
    width:auto;

}
.calculator-container {
    background-color:#f7f7f7;
    margin-top: 20px;
    margin-bottom: 20px;
}
.skip-container {
    border:1px solid #FF7527;
    padding:10px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    display:none;
}
.stopPaymentLink,
.stopPaymentLink:hover,
.stopPaymentLink:focus,
.stopPaymentLink:active {
    cursor:pointer;
    font-weight:normal;
}

.visible {
    display:block;
}
.hidden {
    display:none;
}
.text-red {
    color:red;
}
.title-highlight {
    position:relative;
}
.title-highlight::after {
    content: '';
    position: absolute;
    left:-5px;
    right: -5px;
    top:-5px;
    bottom:-5px;
    z-index: -1;
    background-color: #f0f0f0;
    -webkit-animation: fadeOut;
    -o-animation: fadeOut;
    animation: fadeOut;
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes fadeOut {
    0% {opacity:1}
    100% {opacity:0}
}
.slider-container {
    padding:20px 20px 0 0;
}
.savings-amount-container {
    border:1px solid #7b7b7b;
    background-color:#fff;
    font-weight:700;
    font-size:20px;
    margin-top: 30px;
    padding: 8px 0 8px 5px;
}
.savings-amount-container input {
    border:none !important;
    background-color: transparent !important;
    font-weight:700;
    font-size:20px;
    width:80% !important;
    margin: 0;
    padding: 0;
    display:inline-block;
}
.savings-amount-container input:active,
.savings-amount-container input:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
/* slider modification */
.rzslider .rz-tick {
    position: absolute;
    top: 18px;
    left: 0;
    width: 1px;
    height: 5px;
    margin-left: 11px;
    text-align: center;
    cursor: pointer;
    background: #000000;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.rzslider .rz-tick.rz-selected {
    background: #000;
}
.rzslider .rz-bar-wrapper {
    padding-top: 13px;
}
.rzslider .rz-bar {
    background: #fff;
    border-radius: 5px;
    height: 10px;
    border:1px solid #7b7b7b;
}
.rzslider .rz-selection {
    background: #FF7527;
    border-radius: 5px;
    border:1px solid #FF7527;
}
.rzslider .rz-pointer {
    top: -10px;
    z-index: 2;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: #7fae0d;
    background: -moz-linear-gradient(-45deg, #7fae0d 0%, #4f8c02 100%);
    background: -webkit-linear-gradient(-45deg, #7fae0d 0%,#4f8c02 100%);
    background: linear-gradient(135deg, #7fae0d 0%,#4f8c02 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7fae0d', endColorstr='#4f8c02',GradientType=1 );
    border-radius: 16px;
}
.rzslider .rz-pointer:focus {
    outline:none;
}
.rzslider .rz-pointer:after,
.rzslider .rz-pointer.rz-active:after,
.rzslider .rz-pointer:hover:after {
    background:transparent !important;
}
.save-tooltip {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-weight:bold;
    text-shadow: none;
    padding: 8px 10px;
    background: #de2a57;
    border-radius: 5px;
    -moz-border-radius: 5px;
    top:0;
    left:-26px;
    z-index: 1;
    visibility: hidden;
    opacity:0;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.save-tooltip::after {
    position: absolute;
    content: '';
    background: #de2a57;
    width:15px;
    height:15px;
    bottom:-8px;
    left:50%;
    z-index: -1;
    -webkit-transform: rotate(45deg) translateX(-50%) translateY(25%);
    -moz-transform: rotate(45deg) translateX(-50%) translateY(25%);
    -ms-transform: rotate(45deg) translateX(-50%) translateY(25%);
    -o-transform: rotate(45deg) translateX(-50%) translateY(25%);
    transform: rotate(45deg) translateX(-50%) translateY(25%);
}
.tooltip-visible {
    top:-45px;
    visibility: visible !important;
    opacity:1 !important;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.ui-datepicker-div,
.ui-widget.ui-widget-content {
    z-index:10 !important;
}
#calcError {
    color:red;
}
.calc-sum-container {
    background-color: #e9e9e9;
    padding: 10px 10px 5px 30px;
}
.calc-sum-container p {
    font-size:20px;
}
#calculatedSavings {
    color:#de2a57;
    font-weight:bold;
}
.suspend-notification {
    border:1px solid #FF7527;
    padding:0;
    text-align: left;
    margin-top:20px;
}
.suspend-notification-image {
    background-color: #FF7527;
    padding: 30px 12px;
}
.suspend-notification-text {
    padding: 15px 20px;
}
button[disabled], html input[disabled],
input [disabled] > label {
    opacity:0.6 !important;
    cursor:not-allowed;
}
/* shop css */
.shop h3 {
    margin-bottom:20px;
}
.products {
    margin-top:15px;
}
.product-container {
    text-align: left;
    padding:0 12px;
    margin-bottom:20px;
    opacity:1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-animation: prodShow;
    -o-animation: prodShow;
    animation: prodShow;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.product-hidden {
    -webkit-animation: prodHide;
    -o-animation: prodHide;
    animation: prodHide;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes prodHide {
    0%{opacity:1}
    80%{opacity:0;padding:0 12px;}
    100%{width:0;opacity:0;padding:0;}
}
@keyframes prodShow {
    0%{opacity:0;}
    20%{width:auto;opacity:0;padding:0 12px;}
    100%{width:auto;opacity:1;}
}
.product {
    border:1px solid #b7b7b7;
    background-color:#fafafa;
    padding:25px 10px;
    display: inline-block;
    margin: 0 5px 15px 5px;
    width: 230px;
}
.product-container h4 {
    display: block;
    color: #010101;
    font-size: 18px;
    text-align: center;
    font-weight: bold;

    height: 30px;
}
.btn-shop {
    display:block;
    margin:20px auto 0 auto;
    padding:10px;
    width:100%;
    max-width: 160px;
    text-align: center;
    outline:none;
    border:none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-transform: uppercase;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
}
.btn-pink {
    background-color: #de2a57;
    color:#fff;
}
.btn-disabled {
    background-color: #dadada;
    color:#fff;
    cursor: not-allowed;
}
.btn-secondary {
    background-color: #494949;
    color:#fff;
}
.quantity-btn {
    font-size: 18px;
    font-weight: bold;
    padding: 1px 10px;
    margin: 0 10px;
    background-color: #494949;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
.product-confirm h4 {
    font-size:30px;
    font-weight:600;
    color:#000;
}
.product-confirm p {
    font-size:18px;
}
.cart-table {
    border:1px solid #b7b7b7;
    border-bottom:none;
    width:100%;
}
.cart-table th {
    background-color: #e5e5e5;
}
.cart-table tr {
    border-bottom:1px solid #b7b7b7;
}
.cart-table th,
.cart-table td {
    padding:10px 15px;
    text-align: right;
    width:15%;
    font-size:18px;
}
.cart-table thead th:first-child,
.cart-table tbody td:first-child,
.cart-table tfoot td:first-child {
    text-align: left;
}
.cart-table td input.item-quantity {
    max-width:60px;
    text-align: right;
    float:right;
}
.cart-table th:first-child,
.cart-table td:first-child {
    width:50%;
}
.cart-table th:last-child,
.cart-table td:last-child {
    width:5%;
}
.cart-table tfoot td {
    font-weight:bold;
    color:#de2a57;
}

.icon-remove {
    background: #494949 url(../imgs/ico-remove.png) center center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    width:30px;
    height:30px;
    display:block;
    margin:0 auto;
}
.icon-remove:focus,
.icon-remove:active {
    background: #494949 url(../imgs/ico-remove.png) center center no-repeat;
    -webkit-background-size: 80%;
    background-size: 80%;

}
.shop .module {
    margin:10px 0;
}
.info-collapse-btn {
    color: #FF7527;
    font-size:18px;
    font-weight:bold;
    text-align: left;
    padding:10px 30px;
    display: inline-block;
    margin-top: 30px;
    cursor: pointer;
    position: relative;
}
.info-collapse-btn:hover,
.info-collapse-btn:active,
.info-collapse-btn:focus {
    color:#FF7527;
    opacity:0.8;
}
.info-collapse-btn::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #fe7b29 transparent transparent transparent;
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    clear:both;
}
.info-btn-active::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #fe7b29 transparent;
    position: absolute;
    content: '';
    top: 50%;
    right:0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    clear:both;
}
.cart-buttons {
    margin-top:30px;
}
.btn-wide {
    max-width: 210px;
}
.modal-footer .btn-shop {
    display:inline-block !important;
    margin:0 !important;
}
/*.product-confirm {
    display:none;
    opacity:0;
}*/

.shop-menu-active {
    background-color: #f1f1f1 !important;
    color:#FF7527 !important;
}
.shop-menu-active::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #FF7527;
    position: absolute;
    content: '';
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.fadeOut {
    -webkit-animation: elemFadeOut;
    -o-animation: elemFadeOut;
    animation: elemFadeOut;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.fadeIn {
    -webkit-animation: elemFadeIn;
    -o-animation: elemFadeIn;
    animation: elemFadeIn;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.image-brand-shop {
    width:85px;
    height: auto;
    padding: 6px 6px;
    /* width:120px;
    height: auto;
    padding: 6px 8px; */
}

.shop-brands {
    /* display: flex; */
    align-items: center;
    flex-wrap: wrap;
}

@keyframes elemFadeOut {
    0% {
        opacity:1;
        visibility: visible;
        display: inherit;
    }
    90% {
        opacity:0;
    }
    100% {
        opacity:0;
        display: none;
        visibility: hidden;
    }
}
@keyframes elemFadeIn {
    0% {
        opacity:0;
        visibility: visible;
    }
    100% {
        opacity:1;
        visibility: visible;
    }
}
/*shop css end */

@media screen and (max-width: 474px) {
    .one-row {
        width: 100% !important;
        max-width: 100% !important;
    }

    .less-m-top {
        margin-top: 10px!important;
    }
    .cart-table th, .cart-table td {
        padding: 10px 5px;
        font-size: 16px;
    }
    
    .modal-ul {
        columns:2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media screen and (max-width: 330px) {
    .modal-ul {
        columns:1;
        -webkit-columns: 1;
        -moz-columns: 1;
        font-size: 14px;
    }
}