input.input-error {
    background: #FFEEEE;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.line-clamp-6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.tabs{
    display: flex;
    justify-content: center;
    align-items: stretch;
    background-color: #eeeeee;
    padding: 10px 10px 0px 10px;
}

.tabs > .tab{
    font-size: 24px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: normal;
    font-weight: bold;
    cursor: pointer;
    color: black;
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 20px 20px 0px 0px;
}

.tabs > .tab:hover{
    text-decoration: underline;
}

.tabs > .tab.show,.tabs > .tab.logged-out{
    background-color: white;
}

.ll-coupons {
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    display: none;
    min-height: 500px;
}

.ll-coupons.show {
    display: flex;
}

.ll-coupons p{
    margin-bottom: 0;
    font-size: 12px;
    line-height: normal;
}

.ll-coupon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 10px;
    padding: 10px 10px 50px;
    flex: 0 0 270px;
    height: 200px;
    border: 1px dashed #dddddd;
    border-radius: 20px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0px 10px 25px -20px rgba(0,0,0,0.5);
}

.ll-coupon > *{
    flex: 1;
}

.ll-coupons.unclipped > .ll-coupon.clipping{
    opacity: 0.25;
    pointer-events: none;
}

.ll-coupons.unclipped > .ll-coupon.clipped{
    pointer-events: none;
}

.ll-coupons.unclipped > .ll-coupon.clipped:after{
    content: 'Clipped!';
    display: flex;
    position: absolute;
    justify-content: center;
    font-weight: bold;
    align-items: center;
    font-size: 24px;
    color: grey;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: #ffffffe6;
}

.ll-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 150px;
}

.ll-image-wrapper > img{
    max-height: 100%;
    object-fit: contain;
}

.ll-details{
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
}

.ll-details.top{
    background: linear-gradient(to top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30px,rgba(255,255,255,1) 100%);
    padding-bottom: 25px;
}

.ll-details.bottom{
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30px,rgba(255,255,255,1) 100%);
    padding-top: 25px;
}

.ll-details *{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: left;
    max-width: 100%;
}

.ll-details h2{
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
}

.ll-details h3{
    font-size: 16px;
    color: #117bb8;
    font-weight: bold;
}

.ll-details h4{
    font-size: 14px;
}

.ll-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.ll-buttons > .button{
    color: white;
    font-size: 18px;
    padding: 10px;
    flex: 1;
    height: 20px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

.ll-buttons > .button svg{
    margin-right: 10px;
}

.ll-buttons > .info-button, .ll-buttons > .close-button{
    background-color: grey;
    border-radius: 0px 0px 0px 20px;
}

.ll-buttons > .clip-button, .ll-buttons > .login-button{
    background-color: #117bb8;
    border-radius: 0px 0px 20px 0px;
    flex: 2;
}

.ll-coupons.clipped .ll-buttons > .clip-button{
    display: none;
}

.ll-coupon-popup{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.ll-coupon-popup.open{
    display: flex;
}

.ll-coupon-popup > .modal-backdrop{
    background-color: rgba(0, 0, 0, .75);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ll-coupon-popup > .modal-backdrop > .modal{
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px 20px 60px;
    margin: 20px;
    position: relative;
    box-shadow: 0px 10px 25px -20px rgba(0,0,0,0.5);
}

.ll-coupon-popup .ll-details-container{
    max-height: 300px;
    max-width: 300px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ll-coupon-popup .ll-details-container::-webkit-scrollbar{ 
    display: none;
}

.modal .ll-image-wrapper{
    position: static;
    height: 200px;
    width: 200px;
}

.modal p{
    margin-top: 20px;
}

.ll-coupons h2.message{
    font-size: 24px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: normal;
    font-weight: bold;
    padding: 20px;
    text-align: center;
}

.categories-dropdown{
    position: relative;
    z-index: 9;
}

.categories-dropdown.sticky{
    position: fixed;
    top: 0;
}

.header{
    display: flex;
    align-items: center;
    margin-top: 20px;
    min-height: 100px;
}

.header .header-title{
    flex: 1;
    text-align: right;
    text-transform: capitalize;
}

.header h1{
    font-size: 32px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: normal;
    font-weight: bold;
    padding-right: 20px;
}

.categories-btn {
    background-color: #117bb8;
    color: white;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    display: inline-block;
    border-radius: 0px 20px 20px 0px;
    min-width: 250px;
    transition: border-radius .5s;
}

.categories-dropdown.sticky .categories-btn{
    border-radius: 0px 0px 20px 0px;
}

.categories-dropdown.show .categories-btn{
    border-radius: 0px 20px 0px 0px;
}

.categories-dropdown.sticky.show .categories-btn{
    border-radius: 0px;
}

.categories-btn:hover, .categories-dropdown.show .categories-btn {
    background-color: #474747;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    flex-direction: column;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0px 0px 25px 25px;
    width: 100%;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.dropdown-content a:hover{
    color: white;
    background-color: grey;
}

.hide{
    display: none;
}

.categories-dropdown.show .dropdown-content{
    display: flex;
}

/*************************
 *    Member Area        *
 *************************/
.ll-account-form p {
    font-size: 21px;
    line-height: 1;
    margin-bottom: 3px;
}
.ll-login {
    min-height: 600px;
}
.ll-register-container {
    width: 540px;
    padding: 8% 0 0;
    margin: auto;
    margin-bottom: 60px;
}
.ll-register-container form {
    margin-bottom: 17px;
}
.ll-login-container {
    max-width: 320px;
    padding: 30px 0 0 30px;
    margin: auto;
}
.ll-login form {
    margin-top: 40px;
    margin-left: 0;
    padding: 26px 24px 46px;
    font-weight: 400;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.13);
}
.ll-login label {
    color: #72777c;
    cursor: pointer;
    font-size: 14px;
}
.ll-login select {
    color: #666;
}
.ll-login select:focus {
    color: #111;
}
.ll-login input[type="checkbox"] {
    margin: 2px 6px 20px 0;
}
.ll-login input[type="text"],
.ll-login input[type="password"],
.ll-login input[type="date"],
.ll-login select {
    background: #fbfbfb;
    box-sizing: border-box;
    font-size: 24px;
    width: 100%;
    padding: 3px;
    margin: 4px 6px 10px 4px;
}
.ll-login input[type="checkbox"]:focus,
.ll-login input[type="text"]:focus,
.ll-login input[type="password"]:focus,
.ll-login input[type="date"]:focus,
.ll-login select:focus {
    border-color: #5b9dd9;
    box-shadow: 0 0 2px rgba(30,140,190,.8);
    outline: 2px solid transparent;
}
.ll-login .button-primary {
    background: #0085ba;
    border-color: #0073aa #006799 #006799;
    border-width: 1px;
    border-radius: 3px;
    border-style: solid;
    box-shadow: 0 1px 0 #006799;
    box-sizing: border-box;
    color: #fff;
    height: 30px;
    float: left;
    line-height: 28px;
    margin: 0;
    padding: 0 12px 2px;
    text-decoration: none;
    text-shadow: 0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799;
    vertical-align: baseline;
    white-space: nowrap;
    cursor: pointer;
}
.ll-login .button-primary:hover {
    background: #008ec2;
    border-color: #006799;
    color: #fff;
}
.ll-login .button-primary:active {
    background: #0073aa;
    border-color: #006799;
    box-shadow: inset 0 2px 0 #006799;
    transform: translateY(1px);
    vertical-align: top;
}
.ll-login .page-message {
    border-left: 4px solid #00a0d2;
    padding: 12px;
    margin-left: 0;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
}
.ll-login .page-message.error {
    border-left-color: #dc3232;
}
.ll-login p {
    margin-bottom: 0;
}
.login-form .register-link {
    float: right;
    margin-top: 10px;
}
.login-form .button-primary {
    float: left;
}
.ll-login h1 {
    font-size: 24px;
}
@media (max-width: 600px) {
    .header {
        flex-direction: column-reverse;
        align-items: flex-start;
        margin-top: 20px;
        min-height: 100px;
    }
    .header .header-title{
        text-align: center;
    }
    .header h1{
        padding-left: 20px;
        margin-bottom: 20px;
    }
}