/*
    Created on  : 1 aug. 2022, 08:14:32
    Author      : Johan van Leur <info@into-motion.com>
    Description : Always work from smallest screen up to largest screen
    Default font size is 20px, all elements are scaled from this value with Xrem;
*/
:root{
    --text-color: #999;
    --text-color-dark: #777;    
    --primary-color: #3399CC;
    --secondary-color: #E8308A;
    --gray-line-color: #DEDEDE;
    --alert-color: #e35b5b;
}

@font-face{    
    font-family:'IsoNorm';
    src:url('../../fnt/isonorm-mn.eot');
    src:url('../../fnt/isonorm-mn.eot') format('embedded-opentype'),
        url('../../fnt/isonorm-mn.woff') format('woff'),
        url('../../fnt/isonorm-mn.ttf') format('truetype');		
    font-weight:normal;
    font-style:normal
}
@font-face{
    font-family:'AttenRoundNew';    
    src:url('../../fnt/AttenRoundNewRegular.eot');
    src:url('../../fnt/AttenRoundNewRegular.eot') format('embedded-opentype'),
        url('../../fnt/AttenRoundNewRegular.woff') format('woff');
    
    font-weight:normal;
    font-style:normal
}
@font-face{
    font-family:'AttenRoundNew';    
    src:url('../../fnt/AttenRoundNewBold.eot') format('embedded-opentype');        
    src:url('../../fnt/AttenRoundNewBold.eot') format('embedded-opentype'),
        url('../../fnt/AttenRoundNewBold.woff') format('woff');
    font-weight:bold;
    font-style:normal
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../../fnt/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../../fnt/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../../fnt/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../fnt/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../../fnt/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../../fnt/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

* {
    box-sizing: border-box;
}


::-webkit-scrollbar-track
{    
    background: transparent;
}

::-webkit-scrollbar
{
    width: 0.25rem; 
    height: 0.25rem;
    background-color: inherit;        
}

::-webkit-scrollbar-thumb
{
    background-color: #D0D0D0;
    border-radius:0.125rem;
}

html {
    font-size: 20px; 
    background-color: #EDEDED;
    overscroll-behavior: contain;
}
body {        
    color:var(--text-color);
    font-family: AttenRoundNew, Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    overscroll-behavior: contain;
    -webkit-touch-callout: none;
    -webkit-user-select: none;    
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
    background-color: #EDEDED;
}
.lowercase {
    text-transform: lowercase;
}
.capitalize:first-letter{
    text-transform: capitalize;
}
select.capitalize:first-letter {
    text-transform: capitalize;
}
select.capitalize option:first-letter{
    text-transform: capitalize;
}
.uppercase, input[type=text].iban{
    text-transform: uppercase;
}

.hidden {
    display: none!important;
}

div.ui-loader {
    display: none;
}
.no-border {
    border: none!important;
}
h1,h2,h3,h4,h5,h6 {
    color: var(--primary-color);
    display: block;
    width:100%;
    margin: 0;
    margin-bottom: 0.5rem;    
}
h1 {
    font-size: 1.5em;
}
.pink {
    color: var(--secondary-color);    
}
.blue {
    color: var(--primary-color);
}


a.button {
    display: block;
    position:relative;
    width:100%;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    background-color: #DDD;
    border-radius: 1.5rem;    
    color: var(--text-color-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;    
    margin-bottom: 0.5rem;
    text-decoration: none;
    border:1px solid transparent;
}
a.button.underline {
    text-decoration: underline;
}
a.button.blue {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
a.button.pink {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

a.button.red {
    background-color: var(--warning-color);
    color: white;
    border-color: var(--warning-color);
}

a.button.white {
    background-color: white;
    color: var(--text-color-dark);
    border-color: #d5d5d5;
}
a.button.light-gray {
    background-color: #E9E9E9;
    color: var(--text-color-dark);
    border-color: #E9E9E9;
}
a.button.half {    
    display: inline-block;
    width: 48%;
}

a.button.disabled {
    background-color: #DDD;
    color: var(--text-color-dark);
    border-color: #DDD;
}

a.button span.numeric-indicator {
    position:absolute;
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 50%;    
    font-size: 0.7rem;
    right: 0.75rem;
    top: 0.75rem;
    line-height: 1.5rem;
    font-weight: bold;
}


div.button-row {
    display: flex;
    width:100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}
div.button-row.top-space {
    margin-top: 1rem;
}

div.app-container {    
    position:absolute;
    /*
    left: 0rem;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;        
    */
    top: env(safe-area-inset-top, 0rem);
    right: env(safe-area-inset-right, 0rem);
    bottom: env(safe-area-inset-bottom, 0rem);
    left: env(safe-area-inset-left, 0rem);

}

div.app-container div.loader-overlay {
    position:absolute;
    left: 0rem;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
    background-color: rgba(255,255,255,0.6);    
    z-index: 21;
    display: none;
}
div.app-container div.loader-overlay.visible {
    display: block;
}



div.container {
    position:absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;        
    background-color: white;
}

div.content {    
    position:absolute;
    left: 0rem;
    top: 3rem;
    right: 0rem;
    bottom: 0rem;
    overflow: hidden;
    overflow-y: scroll;    
    
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;    
    padding: 1.2rem;
    font-size: 90%;    
    
}

div.container p {
    line-height: 1.5;    
    font-family: Roboto, Arial, Helvetica, sans-serif; 
    font-size: 0.8em;
    margin-top: 0;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}



div.system-message {
    display: block;
    position:relative;
    border:1px solid var(--primary-color);
    font-family: Roboto, Arial, Helvetica, sans-serif; 
    padding: 1rem;
    padding-left: 3rem;
    margin-bottom: 1rem;
    border-radius: 3px;
    font-size: 0.8rem;
    color: var(--primary-color);    
}
div.system-message[type='1'] {
    color: red;
    border-color: red;
}

div.system-message-medical-stop { 
    display: block;
    position:relative;
    border:1px solid #d3d19f;
    font-family: Roboto, Arial, Helvetica, sans-serif; 
    padding: 1rem;    
    margin-bottom: 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    color: #333;
    background-color: #fffb87;
    text-align: center;
}


div.system-message div.system-message-icon {
    position:absolute;
    width:2rem;
    height: 2rem;
    font-size: 1rem;
    left: 0.5rem;
    top: 1rem;    
    text-align: center;    
}
div.system-message div.system-message-icon span.flaticon:before {
    font-size: 1.75rem;
}

div.system-message div.system-message-title {
    font-weight: bold;
    
    margin-bottom: 0.5rem;
}

div.system-message div.system-message-content {
    font-weight: normal;    
}

div.system-message div.system-message-content p {
    padding: 0;
    margin: 0;
    
}



.center {
    display: block;
    text-align: center;
}
div.app-page {
    position:absolute;
    left: 0rem;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
}

div.birthday-header {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-color-dark);
}


div.app-page.footer div.content {    
    bottom: 4rem;
}
div.app-page.messages div.content {
    top: 6rem;
}
div.container div.app-page div.messages-header {
    position:absolute;
    left: 0rem;
    top: 3rem;
    height: 3rem;
    right: 0rem;
    background-color: var(--secondary-color);
    color: white;    
}

div.container div.app-page div.messages-header span.label {
    position:absolute;
    left: 2.5rem;
    right: 2rem;
    top: 1rem;
    
    overflow: hidden;
    white-space: nowrap;
}
div.container div.app-page div.messages-header span.icon {
    position:absolute;
    left: 1rem;
    top: 1.05rem;
    width: 1rem;
    height: 1.4rem;
}


.bell-anim {
  -webkit-animation: bell-ring 4s .8s ease-in-out infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: bell-ring 4s .8s ease-in-out infinite;
  -moz-transform-origin: 50% 50%;
  animation: bell-ring 4s .8s ease-in-out infinite;
  transform-origin: 50% 3px;
}


@keyframes bell-ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(18deg); }
  3% { transform: rotate(-18deg); }
  5% { transform: rotate(16deg); }
  7% { transform: rotate(-16deg); }
  9% { transform: rotate(14deg); }
  11% { transform: rotate(-14deg); }
  13% { transform: rotate(12deg); }
  15% { transform: rotate(-12deg); }
  17% { transform: rotate(10deg); }
  19% { transform: rotate(-10deg); }
  21% { transform: rotate(8deg); }
  23% { transform: rotate(-6deg); }
  25% { transform: rotate(4deg); }
  27% { transform: rotate(-2deg); }
  29% { transform: rotate(0deg); }
  
  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}
span.flaticon:before {
    margin-left: 0px;
}


div.container div.app-page div.messages-header span.icon span.flaticon:before {
    margin: 0;
    font-size: 1rem;
}
div.container div.app-page div.messages-header span.next-icon {
    position:absolute;    
    top: 1rem;
    right: 1.25rem;
    width: 1rem;
    height: 1rem;
    text-align: center;
}
div.container div.app-page div.messages-header span.next-icon span.flaticon:before {
    margin: 0;
    font-size: 0.7rem;
}

div.splash-logo {
    position:absolute;
    background: transparent url(../../sys/core/splash-logo.svg) no-repeat;    
    height:3rem;
    width: 10rem;
    left: 50%;
    top: 1rem;
    margin-left: -5rem;
    
    background-size: contain;    
    z-index: 3;    
}

div.container div.pre-login-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: flex-start;
    align-items: stretch;
    height: 100%;
}
div.container div.pre-login-container div.app-image-container {
    position:relative;
    display: block;
    height: 50%;    
    overflow: hidden;    
}
div.container div.pre-login-container div.app-image {
    position:absolute;        
    background-image: url(../../sys/personal/app/login.jpg);
    background-size:cover;
    background-position: top center;    
    background-repeat: no-repeat;
    left: 0rem;
    top: 0rem;
    right: 0rem;
    bottom: 3px;
    z-index:1;
}
div.container div.pre-login-container div.app-image-container div.gradient {
    position:absolute;
    height: 5rem;
    left: 0rem;
    right: 0rem;
    bottom: 0px;    
    z-index:2;
    border-bottom: 1px solid white;
        
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 80%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
    
}
div.container div.pre-login-container div.app-content {
    display: block;
    padding: 1rem;
    padding-top: 0rem;
}
div.container div.pre-login-container div.app-content h1 {
    font-size: 1em;
}
div.container div.pre-login-container div.app-content p {
    font-size: 0.8em;
}

div.network-status {
    position:absolute;
    left: 0.5rem;
    right: 0.5rem;
    top: -3.5rem;    
    height: 2rem;
    line-height: 2rem;
    background-color: rgba(0,0,0,0.75);
    z-index: 30;
    color: white;
    vertical-align: middle;
    font-family: IsoNorm;
    opacity: 0;
    transition-property: opacity,top;
    transition-duration: 0.5s;
}
html.offline div.network-status {
    top: 0.5rem;    
    opacity: 1;
}
div.network-status span.flaticon {
    position:absolute;
    left: 0.5rem;
    top: 0rem;
}
div.network-status span.flaticon:before {
    margin: 0;    
    font-size: 1.15rem;
}
div.network-status span.network-message {
    position:absolute;
    left: 2rem;
    top: 0rem;
    bottom: 0rem;
    right: 0.5rem;
}

div.page-header {
    display: block;
    height: 3rem;
    background-color: var(--primary-color);
    color: white;
    position:absolute;
    left: 0rem;
    top: 0rem;
    right: 0rem;
    overflow: hidden;
}
div.page-footer {
    position:absolute;
    height: 4rem;
    bottom: 0rem;
    left: 0rem;
    right: 0rem;    
    background-color: var(--primary-color);
    color: white;
}

div.page-footer div.footer-buttons {
    position:absolute;
    left: 0rem;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;    
    display: flex;    
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: stretch;
}
div.page-footer div.footer-buttons div.footer-button {
    position:relative;
    display: inline-block;
    width: 25vw;
    height: 4rem;
    /*opacity: 0.5;*/
    color: rgba(255,255,255,0.5);
}
div.page-footer div.footer-buttons div.footer-button.active {
    color: rgba(255,255,255,1);
}
div.page-footer div.footer-buttons div.footer-button span.footer-button-icon {
    position:absolute;
    top: 0.5rem;    
    left: 0rem;
    right: 0rem;
    height: 2rem;    
    text-align: center;
}
div.page-footer div.footer-buttons div.footer-button span.footer-button-icon span.flaticon {
    position:relative;
}
div.page-footer div.footer-buttons div.footer-button span.footer-button-icon span.flaticon:before {
    margin: 0;
    font-size: 1.6rem;
}

div.page-footer div.footer-buttons div.footer-button span.footer-button-icon span.flaticon span.badge {
    position:absolute;
    background-color: red;
    color: white;
    right: -7px;
    top: -16px;
    font-size: 0.6rem;
    padding: 0.1rem;
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    text-align: center;
    line-height: 0.8rem;
}
div.page-footer div.footer-buttons div.footer-button span.footer-button-icon span.flaticon span.badge[value='0'] {
    display: none;
}

div.page-footer div.footer-buttons div.footer-button span.footer-button-label {
    position:absolute;
    left: 0rem;
    right: 0rem;
    bottom: 0.5rem;
    height: 1rem;
    
    font-size: 0.7rem;
    text-align: center;
}

div.page-header div.splash-logo {
    position:absolute;
    background: transparent url(../../sys/core/splash-logo.svg) no-repeat;    
    height:1.5rem;
    width: 10rem;
    left: 50%;
    top: 0.75rem;
    margin-left: -5rem;
    
    background-size: contain;    
    background-position:center;
    z-index: 0;    
}
div.page-header div.page-header-text {
    position:absolute;
    
    height:3rem;
    left: 3rem;
    right: 3rem;    
    top: 0rem;
    text-align: center;
    
    font-weight: bold;
    color: white;
    line-height: 3rem;
    white-space:nowrap;
    overflow: hidden;
    
}



div.page-header span.back-button {
    position:absolute;
    left: 0.5rem;
    top: 0.5rem;
    width: 2rem;
    height: 2rem;
    
    line-height: 2.4rem;
    text-align: center;
    border-radius: 50%;
    /*background-color: #3ea8dd;*/
    background-color: #ffffff26;
    
}
div.page-header span.back-button span.flaticon:before {
    margin: 0;
    font-size: 1rem;
}
div.page-header span.account-button {
    position:absolute;
    right: 0.5rem;
    top: 0.5rem;
    width: 2rem;
    height: 2rem;
    
    line-height: 2.3rem;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff26; 
}
div.page-header span.account-button span.flaticon:before {
    margin: 0;
    font-size: 1rem;
}


div.control {
    position:relative;
    display: block;
    margin-bottom:0.5rem;
}

div.control div.control-label {
    /*display: block;*/
    
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
    
    display: flex;            
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    
}
div.control div.control-label span.required_marker {
    color: red;
    padding-left: 0.25rem;
}

div.control div.control-label.info {
    color: var(--text-color);
    font-weight: normal;
}

div.control div.control-label div input[type=checkbox] {
    width:1rem;
    height:1rem;
    margin-right:0.4rem;
}



div.control div.control-input {
    position:relative;
    display: block;
    margin-bottom: 0.5rem;
}

div.control div.control-input.multi {
    display: flex;
    justify-content: center;
}

div.control div.control-input input[type=tel],
div.control div.control-input input[type=text],
div.control div.control-input input[type=email],
div.control div.control-input input[type=number],
div.control div.control-input input[type=password] { 
    
    display: block;
    width:100%;
    font-size: 1rem;
    background-color: #f7f7f7;
    height: 2.5rem;
    border: 2px solid #d5d5d5;
    border-radius: 0.25rem;
    padding: 0.5rem;
    margin: 0.25rem 0rem;
}

div.control div.control-input input.recovery-code-input {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    border-radius: 50%;    
    text-align: center;
    border-color: var(--gray-line-color);
    margin: 0.25rem;
}
div.control div.control-input span.spacer {
    display: inline-block;
    width: 1rem;
    height: 2rem;
    font-size: 1rem;        
    text-align: center;    
    margin: 0.25rem;
    line-height: 2rem;
    color: var(--gray-line-color);
}

div.control div.control-input input:disabled {
    color: #adadad;
}
div.control div.control-input input:focus-visible {
    outline-color: var(--focus-outline-color);
}

div.control div.control-input select{ 
    
    display: block;
    width:100%;
    font-size: 1rem;
    background-color: #f7f7f7;
    height: 2.5rem;
    border: 2px solid #d5d5d5;
    border-radius: 0.25rem;
    padding: 0.5rem;
}

div.control div.control-input select.capitalize {
    text-transform: capitalize;
}
div.control div.control-input select.capitalize option {
    text-transform: capitalize;
}

div.control div.control-input textarea{ 
    
    display: block;
    width:100%;
    font-size: 1rem;
    background-color: #f7f7f7;
    min-height: 2.5rem;
    height: 10rem;
    border: 2px solid #d5d5d5;
    border-radius: 0.25rem;
    padding: 0.5rem;
    color: var(--text-color-dark);
    resize: none;
    
}

div.control div.control-input textarea.error,
div.control div.control-input select.error,
div.control div.control-input input.error {
    border-color: red;
    background-color: #ffeded;
}
div.control div.control-input input.equal {
    border-color: #00cf00;
    background-color: #ebffeb;
}


div.control div.control-input input.half {
    width:50%;
}

div.control div.control-input ul.option-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
div.control div.control-input ul.option-list li {
    padding: 0.25rem 0.5rem;
    position:relative;
    padding-left: 1.5rem;
}
div.control div.control-input ul.option-list li input[type='radio'] {
    width: 1rem;
    height: 1rem;
    margin: 0;
    padding: 0;
    left: 0rem;
    top: 0.25rem;
    position:absolute;
    border: none;
    visibility: hidden;
}
div.control div.control-input ul.option-list li input[type='radio'].color:after {
    position:absolute;
    left: -1px;
    top: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    background-color: #DDD;
    border: 2px solid #EEE;
    content: '';
    visibility: visible;
    transition-property: background-color;
    transition-duration: .2s;
}
div.control div.control-input ul.option-list li input[type='radio'].color.error:after{
    background-color: #ffeded;
    border-color: red;
}

div.control div.control-input ul.option-list li input[type='radio'].color:checked:after,
div.control div.control-input ul.option-list li input[type='radio'].color.error:checked:after {    
    background-color: var(--primary-color);
    border-color:#93dbff;    
    visibility: visible;
}
div.control div.control-input ul.option-list li label:first-letter {
    text-transform: capitalize;
}

div.control div.control-input input[type=password].security {
    font-family: Verdana;
    letter-spacing: 0.125em;
    padding-right: 3rem;
}

.password-input-subtext {
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
}

div.content div.control.no-bottom-margin {
    margin-bottom: 0rem;
}

div.control div.control-input span.eye {
    position:absolute;
    right: 0rem;
    top: 0rem;
    bottom: 0rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    width:2.5rem;
}
div.control div.control-input span.eye.open {
    /* opacity: 0.2; */
    color: var(--secondary-color);
}

div.control div.control-input span.eye span.flaticon {    
    position:absolute;
    top: 0.5rem;
    left: 0.125rem;
}

div.control div.control-input span.eye span.flaticon:before {    
    font-size: 1.5rem;
}


.action-button {
    cursor: pointer;
}

div.menu {
    display: none;
    position:absolute;
    left: 0rem;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;    
    background-color: rgba(0,0,0,0.1);
    z-index: 20;
}
div.menu.visible {
    display: block;
}

div.menu div.menu-content {
    position:absolute;
    right: 0.75rem;
    width: auto;
    max-width: 18rem;
    top: 2.75rem;
    height: auto;
    background-color: white;   
    border-radius: 0.25rem;
    -webkit-box-shadow: 5px 5px 16px 3px rgba(0,0,0,0.3); 
    box-shadow: 5px 5px 16px 3px rgba(0,0,0,0.3);
    
}

div.menu div.menu-content div.menu-item {
    position:relative;
    height: 3rem;
    padding: 1rem;
    border-bottom: 1px solid #DDD;
    font-size: 0.9rem;    
    font-weight: bold;
    display: block;
}
div.menu div.menu-content div.menu-item.header {
    background-color: #ededed;   
    font-weight: normal;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    border-bottom: 1px solid #CCC;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
div.menu div.menu-content div.menu-item span.label {
    padding-right: 1rem;
}
div.menu div.menu-content div.menu-item:last-child {
    border-bottom: none;
}


div.menu div.menu-content div.menu-item span.flaticon {
    position:absolute;
    right: 0.75rem;
    top: 1rem;
}
div.menu div.menu-content div.menu-item span.flaticon:before {
    margin: 0;
    font-size: 0.6rem;
    color: var(--primary-color);
}

div.menu div.menu-content div.menu-item.portal-action {
    background-color: red;
}
div.menu div.menu-content div.menu-item.portal-action span.label,
div.menu div.menu-content div.menu-item.portal-action span.flaticon:before{
    color: white;
}

div.notifications {
    display: block;
}
div.notifications div.notification {
    display: block;
    position:relative;
    border-bottom: 1px solid var(--gray-line-color);
    padding-bottom: 1rem;
    padding-top: 1rem;
}

div.notifications div.notification span.notification-message {
    display: block;
    margin-right: 1rem;
    font-size: 0.9rem;
    color: #333;
}
div.notifications div.notification span.notification-icon {
    position:absolute;
    right: 0rem;
    top: 1rem;
    color: var(--primary-color);
}
div.notifications div.notification span.notification-icon span.flaticon:before{
    margin: 0;
    font-size: 0.7rem;
    color: var(--primary-color);
}
div.notifications div.notification:first-child {
    padding-top: 0rem;    
}
div.notifications div.notification:first-child span.notification-icon {
    top: 0rem;
}
div.notifications div.notification:last-child {
    border-bottom: none;
    padding-bottom: 0rem;
}

div.client-activities {
    display: block;
    margin-bottom: 0.5rem;
}
div.activity {
    position:relative;
    display: block;
    border-bottom: 1px solid var(--gray-line-color);
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    font-size: 1rem;
}
div.activity.bottom-border {
    border-bottom: 1px solid var(--gray-line-color)!important;
}

div.activity:first-child {
    padding-top: 0rem;
}
div.activity:last-child {
    border-bottom: none;
}
div.activity span.next-icon {
    position:absolute;    
    top: 0.6rem;
    right: 0rem;
    width: 1rem;
    height: 1rem;
    text-align: center;
    color: var(--primary-color);
} 
div.activity:first-child span.next-icon {
    top: 0.1rem;
}
div.activity span.next-icon span.flaticon:before {
    margin: 0;
    font-size: 0.7rem;
}


div.activity span.activity-name {
    display: block;
    
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

div.activity span.activity-days {
    
    font-weight: bold;
    display: block;
    color: var(--text-color-dark);
    padding-top: 0.5rem;
}
div.activity span.activity-days span.day {
    text-transform: lowercase;
}

div.activity span.activity-subscription {
    
    display: block;
    color: var(--text-color-dark);
    padding-top: 0.5rem;
}
div.activity span.activity-catchup-credit {
    
    display: block;
    color: var(--secondary-color);
    padding-top: 0.5rem;    
}
div.activity span.activity-credit {
    
    display: block;
    color: var(--secondary-color);    
    padding-top: 0.5rem;    
}
div.activity span.activity-rate {
    
    display: block;
    color: var(--text-color-dark);
    padding-top: 0.5rem;    
}
div.activity span.activity-credit-expired {
    
    display: block;
    color: var(--text-color-dark);
    padding-top: 0.5rem;    
}
.fs-60 {
    font-size: 0.6rem;
}
.fs-70 {
    font-size: 0.7rem;
}
.fs-80 {
    font-size: 0.8rem;
}
.fs-90 {
    font-size: 0.9rem;
}

/* dia slider */
div.dia-slider-container {
    display: block;
    width: 100%;        
    position:relative;
    height: 8rem;
    background-color: rgba(255,255,255,0.9);
    overflow: hidden;
}

div.dia-slider-container div.dia-slider {
    width: auto;
    position:absolute;
    left: 0%;
    top: 0rem;
    bottom: 0rem;
    
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;

}

div.dia-slider-container div.dia-indicator-container {    
    position:absolute;
    right: 0rem;
    left: 0rem;
    bottom: 0rem;
    height: 1rem;    
    text-align: center;    
}

div.dia-slider-container div.dia-slider div.dia-slide {
    
    display: flex;    
    flex-direction: row;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    height: 6.75rem;
    overflow: hidden;
    /*
    display: inline-block;       
    position:relative;
    height:7rem;
    */
    /*
    background-color: white;
    */
}

div.dia-slider-container div.dia-slider div.dia-slide div.card {
    display: flex;    
    width: 100%;
    height: 100%;
    flex-direction: row;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: nowrap;   
    background-color: transparent;
    color: var(--secondary-color);
    border-radius: 1rem;
}

div.dia-slider-container div.dia-slider div.dia-slide div.card p {
    margin: 0;
}



div.dia-slider-container div.dia-indicator-container div.dia-slide-indicator {
    background-color: #EEE;
    border-radius: 50%;
    /*border: 0.25em solid white;*/
    width: 0.25rem;
    height: 0.25rem;
    margin-left: 0.15rem;
    margin-right: 0.15rem;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    display: inline-block;    
}
div.dia-slider-container div.dia-indicator-container div.dia-slide-indicator.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}


div.widget {
    position:relative;
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    border-bottom: 1px solid var(--gray-line-color);
}

div.widget:first-child {
    padding-top: 0rem;
}

div.widget.separate {
    margin-top: 2rem;
}

div.widget.no-border,
div.widget:last-child {
    border-bottom: none;
    margin-bottom: 0rem;
    padding-bottom: 0rem;
}
div.widget div.widget-title {
    display: block;
    position:relative;
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0.5rem;
    margin-right: 0rem;
}
div.widget div.widget-title.wrap {
    white-space:normal;
}
div.widget div.widget-sub-text {
    line-height: 1.5;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 0.8em;    
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

div.widget div.widget-title span.widget-title-button {
    position:absolute;
    right: 0rem;
}

div.widget.top-margin {
    margin-top: 0.5rem;
}
div.widget div.widget-subtitle {
    display: block;
    
    font-weight: bold;
    color: #666;    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0.25rem; 
    padding-top: 0.25rem;
}
div.widget div.sub-section {
    display: block;
    border-bottom:  1px solid var(--gray-line-color);
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
}
div.widget div.sub-section:last-child {
    border-bottom: none;
}
div.lessongroup {
    margin-bottom: 0.25rem;
}
div.lessongroup div.activity-name {
    display: block;
    
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0.25rem;
}
div.lessongroup div.activity-date {
    display: block;
    
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0.25rem;
    
}
div.lessongroup div.activity-time {
    display: block;
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0.25rem;
    
}
div.lessongroup div.activity-info {
    display: block;
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0.25rem;
    
    color: #999;
}
div.activity-markers {
    display: block;
}
div.activity-markers span.activity-marker {
    
    white-space: nowrap;
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.25em 0.75rem;
    border-radius: 0.85rem;
    margin-right: 0.25rem;
}
div.activity-markers span.activity-marker[type='8'] {        
    background-color: #EAD93C;
    color: #573a3a;    
}

div.progress-bar {  
    display: block;
    position:relative;
    height: 0.8rem;
    border-radius: 0.4rem;
    background-color: #EFEFEF;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;    
    /*overflow: hidden;    */
    
}
div.progress-bar.icon {
    margin-right: 3rem;
}
div.progress-bar.margin-bottom {
    margin-bottom: 1.5rem;
}
div.progress-bar div.progress {
    position:absolute;    
    background-color: var(--secondary-color);
    left: 0px;
    top: 0px;
    bottom: 0px;
    border-radius: 0.35rem;
    transition-property: width;
    transition-duration: 0.6s; 
}
div.progress-bar div.progress-information-button {
    position:absolute;
    right: -3rem;
    top: -0.6rem;
    width: 2rem;
    height: 2rem;
    text-align: center;
    border-radius: 50%;
    line-height: 2.65rem;
    background-color: var(--primary-color);
    color: white;
}
div.progress-bar div.progress-information-button span.flaticon:before {
    font-size: 24px;
}
div.progress-bar div.progress-information-button.has-notes {
    background-color: var(--alert-color);
    color: white;
}
div.widget div.text {
    
    padding-bottom: 0.25rem;
}
div.widget div.text.dark {
    color: var(--text-color-dark);
}
div.widget div.text.bold {
    font-weight: bold;
}
div.widget div.widget-next {
    position:absolute;    
    top: 0.55rem;
    right: 0rem;
    width: 1rem;
    height: 1rem;
    text-align: center;
    color: var(--primary-color);
}
div.widget:first-child div.widget-next {
    top: 0rem;
}

div.widget div.widget-next span.flaticon:before {
    margin: 0;
    font-size: 0.7rem;
}

div.app-page.location-detail div.content div.location-image-container {
    display: block;
    position:relative;        
    margin-bottom: 0.5rem;
}
div.app-page.location-detail div.content div.location-image-container div.image {
    display: block;
    width: 100%;
    height: 8rem;
    max-height: 8rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--primary-color);
}
table.ezzy-info-table {
    width:100%;
    border-collapse: collapse;
    margin-top: 1em;
}
table.ezzy-info-table tr td {
    border-bottom: 1px solid var(--gray-line-color);
    border-top: 1px solid var(--gray-line-color);
    padding: 0.5em 0em;
}
table.ezzy-info-table tr td:first-child {
    color: var(--text-color-dark);
    font-weight: bold;
}
table.ezzy-info-table tr td:nth-child(2) {
    color: var(--primary-color);
    font-weight: bold;
}
div.ezzys-islands-logo {
    background-image: url(../../sys/personal/app/ezzys_island.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width:100%;
    height: 9rem;
    margin-bottom: 0.5rem;
}

div.profile-switch-container {
    display: block;
    position:relative;
    height: 5rem;
    overflow: hidden;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 1rem;
}
div.profile-switch-container::-webkit-scrollbar {
    display: none;
}
div.profile-switch-container div.profile-switch-list {    
    display: block;
    height: 5rem;
    margin-bottom: 0.5rem;
}
div.profile-switch-container div.profile-switch-list div.profile-switch-button {
    position:relative;
    width: 4rem;
    height: 5rem;
    display: inline-block;
    float:left;    
    border-radius: 0.25rem;
}
div.profile-switch-container div.profile-switch-list div.profile-switch-button.active {
    background-color: #d3f0ff;
    color: white;
}

div.profile-switch-container div.profile-switch-list div.profile-switch-button div.profile-image {    
    position:absolute;
    background-color: #E1E1E1;
    border: 1px solid #CECECE;
    left: 0.5rem;
    top: 0.5rem;
    width: 3rem;
    height: 3rem;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 50%;    
}
div.profile-switch-container div.profile-switch-list div.profile-switch-button div.profile-icon {    
    position:absolute;
    background-color: #E1E1E1;
    border: 1px solid #DDD;
    left: 0.5rem;
    top: 0.5rem;
    width: 3rem;
    height: 3rem;    
    border-radius: 50%; 
    text-align: center;
    color: var(--text-color-dark);
    line-height: 3.5rem;
}
div.profile-switch-container div.profile-switch-list div.profile-switch-button div.profile-icon.add-client {
    font-size:3rem;
    line-height:2.5rem;
    color: #b9b9b9;
}


div.profile-switch-container div.profile-switch-list div.profile-switch-button div.profile-icon span.flaticon:before {
    margin: 0;
}
div.profile-switch-container div.profile-switch-list div.profile-switch-button div.profile-name {
    position:absolute;
    top: 4rem;    
    left: 0rem;
    right: 0rem;
    text-align: center;
    font-size: 0.6rem;
    font-family: AttenRoundNew, Arial, sans-serif;
    color: #333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

div.data-row {
    display: block;
    font-size: 0.9em;
    font-family: AttenRoundNew, Arial, sans-serif;
}
div.data-row:after {
    content: "";
    display: table;
    clear: both;    
}
div.data-row div.data-field {
    display: block;
    color: #AAA;
    width: 50%;
    float:left;
    vertical-align: top;
    padding: 0.35em 0em;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 0.25em;
}
div.data-row div.data-value {
    display: inline-block;
    color: #333;
    width: 50%;
    float:left;
    vertical-align: top;
    padding: 0.35em 0em;
    line-height: 1.3;
    padding-left: 0.25em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
div.data-row div.data-value.wrap {
    white-space: normal;
}
div.data-row div.data-value ul.value-list {
    display: block;
    width:100%;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: hidden;
}
div.data-row div.data-value ul.value-list li {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 0.15em 0em;
    width:100%;
    overflow: hidden;
}
div.data-row div.data-value ul.value-list li:first-child{
    padding-top: 0em;
}

div.teacher-list {
    display: block;
    margin-top: 0.5rem;
}
div.teacher-list div.teacher-item {
    position:relative;    
    /*height: 3rem;*/
    min-height: 3rem;
    position: relative;
    display: flex;    
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 0.75rem;
}
div.teacher-list div.teacher-item:last-child {
    margin-bottom: 0.25rem;
}

div.teacher-list div.teacher-item div.teacher-name {
    display: block;
    padding-left: 4rem;    
    line-height: 3rem;    
    overflow: hidden;
    white-space: nowrap;
    width:100%;    
}
div.teacher-list div.teacher-item div.group-info {
    display: block;
    padding-left: 3.5rem;
    width: 100%;
    padding-top: 0.25rem;
}

div.teacher-list div.teacher-item div.group-info div.teacher-name {
    padding-left: 0rem;
    line-height: 1;
    font-size: 0.9rem;
    color: #333;
}
div.teacher-list div.teacher-item div.group-info div.activity-name {
    padding-left: 0rem;
    line-height: 1;
    font-size: 0.9rem;
    color: var(--primary-color);
}
div.teacher-list div.teacher-item div.group-info div.group-time {
    font-size: 0.8rem;
}
div.teacher-list div.teacher-item div.group-info div.group-date {
    font-size: 0.8rem;
}
div.teacher-list div.teacher-item div.group-info div.group-seats {
    font-size: 0.8rem;
    color: var(--primary-color);
}
div.teacher-list div.teacher-item div.group-info div.group-location {
    font-size: 0.8rem;
}

div.teacher-list div.teacher-item div.teacher-image {
    position:absolute;
    left: 0rem;
    top: 0rem;
    width: 3rem;
    height: 3rem;
    background-color: #E1E1E1;
    border: 1px solid #DDD;
    border-radius: 50%;
    color: var(--text-color-dark);
    overflow: hidden;
    background-size: contain;    
    text-align: center;    
    line-height: 2.9rem;        
}
div.teacher-list div.teacher-item div.teacher-image span.flaticon {
    position:absolute;
    left: 0rem;
    top: 0rem;
    bottom: 0rem;
    right: 0rem;    
}
div.teacher-list div.teacher-item div.teacher-image span.flaticon:before {
    margin: 0;
}

div.container div.popup-layer {
    position:absolute;
    top: 0rem;
    left: 0rem;
    bottom: 0rem;
    right: 0rem;
    top: env(safe-area-inset-top, 0rem);
    right: env(safe-area-inset-right, 0rem);
    bottom: env(safe-area-inset-bottom, 0rem);
    left: env(safe-area-inset-left, 0rem);
    background-color: rgba(0,0,0,0.5);
}

div.container div.popup-layer[id='app.popup.sepa.error'] {
    position: fixed;
    z-index: 30;
}

div.container div.popup-layer[id='app.popup.sepa.error'] div.app-popup div.content {
    max-width: 576px;
}

div.app-popup {
    display:flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;
    height: 100%;
    align-items: center;
}
div.app-popup div.content {
    display: flex;
    flex-direction: column;
    position:relative;
    background-color: white;
    left: auto;    
    top: auto;
    bottom: auto;
    height: auto;
    right: auto;
    width: 90%;
    border-radius: 0.25rem;
    overflow-y: hidden;
}
div.app-popup div.content.fullwidth {
    width:100%;
    display: block;
    flex-direction: row;
}

div.app-popup#sepa {
    
    display: flex;
    align-content: flex-start;
    justify-content: center;
    flex-direction: row;
    height: 100%;
    align-items: flex-start;
}


div.app-popup div.content div.widget p {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5rem;
}
div.identification-image{
    display: block;
    text-align: center; 
    margin-top: 1rem;
}
div.identification-image img {
    width:100%;
    height: auto;    
    max-width: 600px;
}
div.identification-image[type='1'] img {
    width:50%;
    height: auto;    
    max-width: 400px;
}

label.container {
    display: block;
    position:relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
}

input[type=checkbox].custom {
    width: 0px;
    height: 0px;
    position:absolute;
    opacity: 0;
}

span.custom-checkbox {
    position:absolute;
    left: 0;
    top: 0;
    width: 1.1rem;
    height: 1.2rem;
    background-color: #EEE;
    border: 2px solid #d5d5d5;
    vertical-align: top;
    margin-right: 0.5rem;
    border-radius: 0.25rem;
}

span.custom-checkbox:after {
    content: "";
    position:absolute;
    display: none;
}
label.container input[type=checkbox].custom:checked ~ .custom-checkbox {
    background-color: var(--primary-color);
    border-color:#93dbff;
}
label.container input[type=checkbox].custom:checked ~ .custom-checkbox:after {
    display: block;    
}

span.custom-checkbox:after {
    left: 0.3rem;
    top: 0.15rem;
    width: 0.20rem;
    height: 0.5rem;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
div.control#login-error {
    padding: 0.5rem;
    border: 2px solid red;
    background-color: #ffeded;
    border-radius: 0.25rem;
    color: black;
    margin-bottom: 1rem;
    min-height: 2.5rem;
}
div.control#login-error p {
    margin: 0;
    padding: 0;
}

div.teacher-card {
    display: block;
    width: 65%;    
    max-height: 80%;
    border-radius: 0.25rem;
}
div.teacher-card div.teacher-image {
    width:100%;
    /*height: 16rem;   */
    aspect-ratio: 1/1;
    display: block;    
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;    
    background-color: #d1d1d1;
    border: none;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
div.teacher-card div.teacher-name {
    display: block;
    width:100%;
    background-color :var(--primary-color);
    color: white;    
    padding: 0.5rem;
    font-size: 0.9rem;
}
div.teacher-card div.teacher-info {
    display: block;
    width: 100%;
    background-color: white;
    color: black;
    font-size: 0.9rem;
    padding: 0.5rem;
    overflow-y: scroll;   
    max-height: 8rem;    
}

div.dia-slide div.reservation div {
    /*line-height: 1.5;*/
    padding-bottom: 0.25rem;
}

div.dia-slide div.reservation div.reservation-location{
    display: block;    
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0.25rem;
    padding-right: 1rem;
}


div.reservation-location span.next-icon {
    position:absolute;    
    top: 0.6rem;
    right: 0rem;
    width: 1rem;
    height: 1rem;
    text-align: center;
    color: var(--primary-color);
} 
div.reservation-location:first-child span.next-icon {
    top: 0.1rem;
}
div.reservation-location span.next-icon span.flaticon:before {
    margin: 0;
    font-size: 0.7rem;
}

div.plus-minus-container {
    position:relative;
    display: block;    
    margin-right: 5.5rem;
}
span.round-button {
    position:absolute;
    left: 0.25rem;
    top: 0.25rem;
    width: 2rem;
    height: 2rem;
    
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    background-color: #ffffff26;
    color: white;
}
span.round-button.blue {
    background-color: var(--secondary-color);
}

div.plus-minus-container div.plus-minus-value {
    display: block;
    width:100%;
    font-size: 1rem;
    background-color: #F7F7F7;
    height: 2.5rem;
    border: 2px solid #D5D5D5;
    border-radius: 0.25rem;
    padding: 0.5rem;
}
div.plus-minus-container div.button {
    width: 2.5rem;
    height: 2.5rem;    
}
div.plus-minus-container div.button span.round-button {
    font-size: 1.5rem;
    line-height: 1.8rem;
}
div.plus-minus-container div.button span.round-button.primary {
    background-color: var(--primary-color);
}
div.plus-minus-container div.plus-button {
    position:absolute;
    right: -5.5rem;    
    top: 0rem;    
}
div.plus-minus-container div.minus-button {
    position:absolute;
    right: -3rem;    
    top: 0rem;    
}

div.plus-minus-container div.button.disabled span.round-button {
    background-color: #D7D7D7;
    color: #b1b1b1;
}

div.ticketshop-product-group {
    display: block;
    padding: 0rem;    
    border: 1px solid var(--primary-color);
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}
div.ticketshop-product {
    padding: 1rem;
    /*margin-bottom: 0.5rem;*/
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #dddddd;    
}
div.ticketshop-product:last-child{
    border-bottom: none;
    margin-bottom: 0rem;
    padding-bottom: 0.5rem;
}
div.ticketshop-product div.control {
    margin-bottom: 0rem;    
}

div.control div.control-label.ticketshop-product-name {
    font-weight: normal;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    color: #666;
    font-size: 0.9rem;
}
div.control div.control-label.ticketshop-product-name div.product-name {
    
}
div.control div.control-label.ticketshop-product-name div.product-price {
    
    width: 5rem;
    text-align: right;
    margin-right: 0.25rem;
}

div.ticketshop-products div.ticketshop-product-group div.ticketshop-product-upsell-container {    
    background-color: #f8fadb;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
div.ticketshop-products div.ticketshop-product-group div.ticketshop-product-upsell-container.collapsed {
    display: none;
}
div.ticketshop-product-total {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
}
div.ticketshop-product-total div.product-total-value {
    width: 5rem;
    text-align: right;
}

span.user-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0rem;
    top: 0rem;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-clip: border-box;
    border: 1px solid  #00000052;
}

div.ticketshop-product.used div.plus-minus-container div.plus-minus-value {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #edf5ff;
}

div.easytrack-score-list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 0.5rem;
    border-top: 1px solid var(--gray-line-color);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    
    
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 0.8em;
    
}

div.easytrack-score-list div.easytrack-score {    
    display: flex;
    width: 100%;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
}
div.easytrack-score-list div.easytrack-score div.date {
    flex-basis: 5rem;
    text-align: left;
    flex-grow: 0;
    flex-shrink: 0;
}
div.easytrack-score-list div.easytrack-score div.score{
    text-align: left;
    flex-grow: 1;    
}
div.easytrack-score-list div.easytrack-score div.score-checkmark{
    flex-basis: 2rem;
    text-align: right;
    flex-grow: 0;
    flex-shrink: 0;
}
div.easytrack-score-list div.easytrack-score div.score-checkmark span.flaticon {
    display: none;
}
div.easytrack-score-list div.easytrack-score div.score-checkmark.enabled span.flaticon {
    color: #67d767;
    display: inline;
}
div.easytrack-score-list div.easytrack-remark {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 90%;
    font-style: italic;
}

div.easytrack-score-list div.easytrack-no-scores{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

div.ticketshop-product-list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 1rem;
}
div.ticketshop-product-list div.ticketshop-product-row{ 
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}
div.ticketshop-product-list div.ticketshop-product-row:first-child {
    margin-top: 0rem;
}

div.ticketshop-product-list div.ticketshop-product-row div.caption  {
    display: block;
    margin-bottom: 0.5rem;
}
div.ticketshop-product-list div.ticketshop-product-row div.detail {    
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;    
    padding-left: 1rem;
}
div.ticketshop-product-list div.ticketshop-product-row div.detail div.count {
    
}
div.ticketshop-product-list div.ticketshop-product-row div.detail div.count span.multiplier {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: var(--secondary-color);
}
div.ticketshop-product-list div.ticketshop-product-row div.detail div.price {
    
}
div.ticketshop-product-list div.ticketshop-product-row div.detail div.total {
}

div.ticketshop-product-list div.ticketshop-product-row div.detail div.total span.equal{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: var(--secondary-color);
}
div.ticketshop-product-total-row {    
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 0rem;
    padding-right: 1rem;
}

.top-margin {
    margin-top: 1rem;
}

div.ticketshop-product-total-row div.product-total-label {
}

div.ticketshop-product-total-row div.product-total-value {
    width: 5rem;
    text-align: right;
}


div.terms-and-conditions {
    display: block;
}

div.terms-and-conditions div.published-date {
    font-size: 0.8rem;
    color : #333;
}

div.time-slot-container {
    display: block;
}

div.time-slot-container div.date-block {
    display: block;
    margin-bottom: 1rem;
}
div.time-slot-container div.date-block div.date-title {
    color: var(--primary-color);
}
div.time-slot-container div.date-block ul.timeslot-list {
    display: block;
}

div.time-slot-container span.timeslot-remark {
    display: block;
    color: #b1b1b1;
    padding-top: 0.4rem;
}

div.ticket-entry-list {
    display: block;
    margin-top: 0.5rem;
}

div.ticket-entry-list div.ticket-entry {
    display: block;
    border: 1px solid var(--gray-line-color);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    padding: 0.5rem;
    position:relative;
    min-height: 4rem;
}
div.ticket-entry-list div.ticket-entry:last-child {
    margin-bottom: 0rem;
}

div.ticket-entry-list div.ticket-entry div.ticket-info {
    display: block;
    position:relative;
    padding-left: 2.8rem;
}

div.ticket-entry-list div.ticket-entry div.ticket-info div.row {
    margin-bottom:0.5rem;
    padding-left: 1.4rem;
    position:relative;
    line-height: 1rem;
}
div.ticket-entry-list div.ticket-entry div.ticket-info div.row:last-child {
    margin-bottom: 0rem;
}

div.ticket-entry-list div.ticket-entry div.ticket-info div.row span.flaticon {
    position:absolute;
    left: 0rem;
    top: 0.05rem;
}
div.ticket-entry-list div.ticket-entry div.ticket-info div.row span.flaticon:before {
    font-size: 0.8rem;
}
div.ticket-entry-list div.ticket-entry div.ticket-info div.row.expired {
    color: red;
}
div.ticket-entry-list div.ticket-entry div.ticket-info div.row.used {
    color: #00c500;
}

div.ticket-entry-list div.ticket-entry div.ticket-info div.ticket {
    position:absolute;
    left: 0rem;
    top: 0rem;
}
div.ticket-entry-list div.ticket-entry div.ticket-info div.ticket span.flaticon:before {
    font-size: 2.4rem;
}

div.ticket-entry-list div.ticket-entry span.next-icon {
    position: absolute;
    top: 0.6rem;
    right: 0.3rem;
    width: 1rem;
    height: 1rem;
    text-align: center;
    color: var(--primary-color);
}
div.ticket-entry-list div.ticket-entry span.next-icon span.flaticon:before{
    font-size: 0.7rem;
}

div.ticket-detail-container {
    display: block;
}
div.ticket-detail-container div.row {
    position:relative;
    display: block;
    padding-left: 1.3rem;
    margin-bottom: 0.25rem;
}
div.ticket-detail-container div.row span.flaticon {
    position:absolute;
    left: 0rem;
    top: 0rem;
}
div.ticket-detail-container div.ticket-date {
    
}
div.ticket-detail-container div.ticket-time {
    
}
div.ticket-detail-container div.ticket-location {
    
}
div.ticket-detail-container div.ticket-list {
    display: block;
    margin-top: 1rem;
}
div.ticket-detail-container div.ticket-list div.ticket-item {
    display: block;
    padding: 0.5rem;
    border: 1px solid var(--gray-line-color);
    border-radius: 3px;
    margin-bottom: 1rem;
}
div.ticket-detail-container div.ticket-list div.ticket-item div.ticket-product {
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}
div.ticket-detail-container div.ticket-list div.ticket-item div.upsell-details {
    display: block;
    padding-left: 1rem;
}
div.ticket-detail-container div.ticket-list div.ticket-item div.upsell-details div.upsell-product {
    font-size: 0.8rem;
}


div.ticket-detail-container div.ticket-list div.ticket-item:last-child {
    margin-bottom: 0rem;
}
div.ticket-detail-container div.ticket-list div.ticket-item div.ticket-image {
    display: block;
    width:100%;
    text-align: center;
}

div.ticket-detail-container div.ticket-list div.ticket-item div.ticket-image img {
    width:100%;    
}

div.ticket-detail-container div.ticket-list div.ticket-item div.ticket-image[type='2'] img {
    width:50%;
}

div.ticket-detail-container div.ticket-list div.ticket-item div.ticket-code {
    display: block;
    text-align: center;
    font-size: 0.6rem;
}

div.zoom-overlay {
    position:absolute;
    left: 0rem;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;
    background-color: rgba(0,0,0,0.8);
    z-index: 1;
    display: none;
}
div.zoom-overlay img {        
    position:absolute;
    width: 80%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
div.zoom-overlay img[type='0']  {    
    transform: rotate(-90deg) scale(1.7);    
}
div.zoom-overlay img[type='1']  {    
    transform: rotate(-90deg) scale(2.0);    
}
div.zoom-overlay img[type='2']  {    
    transform: rotate(0deg);    
}

div.payment-request-item {
    display: block;
    margin-bottom: 1rem;
    border-bottom: 1px dotted #DDD;
    padding-bottom: 0.5rem;
}
div.payment-request-item div.amount {
    display: flex;
    width:100%;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}
div.payment-request-item div.amount div.amount-value {
    color: var(--primary-color);
    font-weight: bold;
}
div.payment-request-item div.amount div.status-paid {
    background-color: var(--secondary-color);
    
    font-size: 0.8rem;
    color: white;
    border-radius: 0.5rem;
    padding: 0.1rem 0.5rem;
}

div.payment-request-item div.description {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.2rem;
}
div.payment-request-item div.timestamp {
    margin-bottom: 0.25rem;
}


div.payment-request-item div.button-bar {
    display: flex;
    width:100%;
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-between;
    align-items: center;    
}
div.payment-request-item div.button-bar a.download-button {
    width: 3rem;
    max-width:3rem;
    min-width: 3rem;
    line-height: 3.2rem;
}
div.payment-request-item div.button-bar a.payment-button {
    
    margin-left:0.75rem;
}

div.personal-message {
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    border-bottom: 1px dotted var(--gray-line-color);
    padding-bottom: 0.5rem;
}


div.personal-message.unread div.subject {
    color: #333;
}

div.personal-message div.header {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

div.personal-message div.header div.timestamp {
    font-size: 0.8rem;
    color: var(--primary-color);
    
}
div.personal-message div.header div.status {
    background-color: var(--secondary-color);
    font-size: 0.7rem;
    color: white;
    border-radius: 0.5rem;
    padding: 0.1rem 0.5rem;
    display: none;
}
div.personal-message.unread div.header div.status {
    display: block;
}

div.personal-message div.header div.subject {
    font-size: 0.8rem;
}


div.personal-message-container {
        
    position:absolute;
    left: 0rem;
    top: 0rem;
    right: 0rem;
    bottom: 0rem;    
    background-color: white;
    padding: 1rem;
    border-radius: 0px;
    
}

div.personal-message-container div.message-flex-container {
    display: flex;
    width: 100%;
    height: 100%;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
    
}

div.personal-message-container div.message-header {
    display: flex;
    flex-basis: content;
    order: 1;
    border-bottom: 1px dotted var(--gray-line-color);
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: flex-start;
    align-items: stretch;    
    width:100%;
}
div.personal-message-container div.message-header div.timestamp {
    display: block;
    color: var(--primary-color);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

div.personal-message-container div.message-header div.subject {
    display: block;    
    font-size: 0.8rem;    
    margin-bottom: 0.5rem;
}

div.personal-message-container div.message-body{
    display: block;
    order: 2;    
    overflow: scroll;    
    height: 100%;
    padding-top: 0.5rem;
    width:100%;
}
div.personal-message-container div.message-body div.message-body-container {
    display: block;
    /*min-width: 600px;    */
    width:100%;
    transform-origin: 0 0;
    transform: scale(1.0);
}
div.personal-message-container div.message-body div.message-body-container center {
    display: block;
    width:100%;
    text-align: left;
}

div.personal-message-container div.message-body div.message-body-container a{
    white-space: normal;
    word-break: break-all;    
}

table.rich-mail.content-container {    
    
}

div.personal-message-container div.message-body div.message-body-container p {
    margin: 0;
}

div.personal-message-container div.widget {
    display: flex;
    flex-basis: content;
    order: 3;
    margin: 0;
    padding: 0;
    padding-top: 1rem;
    margin-top: auto;
    /*
    position:absolute;
    height: 3rem;    
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    */
}

div.personal-message-container div.widget a {
    margin: 0;
}


div.presence-item {    
    display: flex;
    width: 100%;
    margin-bottom: 0.5rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0.5rem;
}

div.presence-item div.status {
    background-color: var(--secondary-color);
    font-size: 0.65rem;
    color: white;
    border-radius: 0.5rem;
    padding: 0.1rem 0.5rem;
    width: 6rem;
    order: 1;
    text-align: center;    
    /*text-transform: uppercase;*/
}

div.presence-item div.status[type='1'] {
    background-color: #ff7b7b;
}
div.presence-item div.status[type='2'] {
    background-color: #00b31b;
}
div.presence-item div.member-type span {
    font-size: 0.7rem;
    border: 1px solid var(--primary-color);
    border-radius: 0.5rem;     
    padding: 0.1rem 0.4rem;
    background-color: var(--primary-color);
    color: white;
}


div.presence-item div.detail {
    width: 100%;
    order: 2;
    padding-left: 1rem;
    
}
div.presence-item div.detail div {
    margin-bottom: 0.25rem;
}
div.presence-item div.detail div.activity-name {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
div.presence-item div.detail div.date {
    font-size: 0.8rem;
}
div.presence-item div.detail div.time {
    font-size: 0.8rem;
}
div.presence-item div.detail div.teacher-name {
    font-size: 0.8rem;
}

div.horizontal-select {
    display: flex;
    width:100%;
    height: 3rem;
    line-height: 3rem;
    margin-bottom: 0.5rem;
    background-color: var(--primary-color);
    border-radius: 1.5rem;
    position:relative;
    color: white;
}

div.horizontal-select div.select-button {
    position:absolute;
    width: 2rem;
    top: 0rem;
    height: 3rem;      
    line-height: 3rem;
}
div.horizontal-select div.select-button.prev {
    left: 0rem;
    width:2.5rem;
    text-align: center;    
}
div.horizontal-select div.select-button.prev span.flaticon {    
    position:absolute;
    left: 0.75rem;
    top: 0.18rem;
    line-height: 3rem;
}
div.horizontal-select div.select-button.next {
    right:0rem;
    width:2.5rem;
    text-align: center;
}
div.horizontal-select div.select-button.next span.flaticon {    
    position:absolute;
    left: 0.75rem;
    top: 0.18rem;
    line-height: 3rem;
}
div.horizontal-select div.select-button-caption {
    position:absolute;
    left: 2.5rem;
    right: 2.5rem;    
    top:0px;
    bottom: 0px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}
div.horizontal-select div.select-button-caption div.autoscroll {
    position:absolute;
    width: auto;
    white-space: nowrap;
    transform: translateX(0%);
    animation-name: none;    
}

div.horizontal-select div.select-button-caption div.autoscroll.animated {
    
    -webkit-animation: autoscroll 10s .8s linear infinite;    
    -moz-animation: autoscroll 10s .8s linear infinite;    
    animation: autoscroll 10s .8s linear infinite;
    
    
}

.profile-photo-container {
    width:100%;
    aspect-ratio: 1/1;
    background-color: white;
    margin-bottom: 2rem;
    padding:0.5rem;
}


@keyframes autoscroll{
  0% { 
      transform: translateX(0%);
  }
  50% {      
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(0%);
  }
}

div.horizontal-select div.options {
    display: none;
}



div.teacher-list.catchup div.teacher-item div.group-info div.teacher-name {
    padding-left: 0rem;
    line-height: 1;
    font-size: 0.8rem;
    color: #333;
    margin-bottom:0.25rem;
}
div.teacher-list.catchup div.teacher-item div.group-info div.activity-name {
    position:relative;
    padding-left: 0rem;
    line-height: 1;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom:0.25rem;
}
div.teacher-list.catchup div.teacher-item div.group-info div.group-time {
    font-size: 0.8rem;
}
div.teacher-list.catchup div.teacher-item div.group-info div.group-date {
    font-size: 0.8rem;
}
div.teacher-list.catchup div.teacher-item div.group-info div.group-seats {
    font-size: 0.8rem;
    color: var(--secondary-color);
}
div.teacher-list.catchup div.teacher-item div.group-info div.group-location {
    font-size: 0.8rem;
}
div.reservation-code-container {
    display: block;
    padding: 1rem;
}
img.reservation-code-image {
    display: block;
    width:100%;
}

.personal-class-availability {
    width:100%;
    text-align: center;
    font-style: italic;
    color: var(--secondary-color);
}
.personal-catchup-availability {
    width:100%;
    text-align: center;
    font-style: italic;
    color: var(--secondary-color);
}

label.checkbox-container {
    display: block;
    position:relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label.checkbox-container input {
    position:absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;    
}

label.checkbox-container span.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    background-color: #eee;
    border-radius: 3px;
}

label.checkbox-container:hover input ~ span.checkmark {
  background-color: #ccc;
}

label.checkbox-container input:checked ~ span.checkmark {
  background-color: #2196F3;
}

label.checkbox-container input:disabled ~ span.checkmark {
    background-color: #ccc;
}

label.checkbox-container span.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

label.checkbox-container input:checked ~ span.checkmark:after {
  display: block;
}

label.checkbox-container span.checkmark:after {
  left: 0.4rem;
  top: 0.1rem;
  width: 0.3rem;
  height: 0.7rem;
  border: solid white;
  border-width: 0 0.15rem 0.15rem 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


span.basin {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

span.seats-available {
    display: block;    
    color: #17a931;
    font-size: 0.8rem;
    padding-top: 0.4rem;
}

div.sticky {
    position:absolute;
    top:0rem;    
}
div.sticky.right {
    right: 0rem;
}
div.info-button {    
    width:2rem;
    height:2rem;
    text-align: right;
    background-color: transparent;
    color: var(--primary-color);
}
div.info-button span.flaticon:before {
    font-size: 1rem;
}
p.lesson-code-info-title {
    color: var(--primary-color);
    font-weight: bold;
}

div.connection {
    display: inline-block;
    width: 8rem;
    height: 8rem;
    background-color: #3399CC;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 11rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
div.connection.green {
    background-color: var(--green-color);
}
div.connection.red {
    background-color: var(--warning-color);
}
div.connection span.flaticon:before {
    font-size: 3.5em;
}

div.control.center {
    text-align: center;
}

@media (max-width:319px) {
    
    div.data-row div.data-field {
        display: block;
        width:100%;
        padding-right: 0em;
        color: #333;
    }
    
    div.data-row div.data-value {
        display: block;
        width:100%;
        padding-left: 0em;
        color: #AAA;
    }
    

    
}

@media (max-width:320px)  { /* smartphones, iPhone, portrait 480x320 phones */ 
    
    div.presence-item {            
        flex-direction: column;        
    }
    div.presence-item div.status {
        margin-bottom: 0.25rem;
        order: 2;
    }
    div.presence-item div.detail {
        padding-left: 0rem;
        order: 1;
    }
}

@media (min-width:320px)  { /* smartphones, iPhone, portrait 480x320 phones */ 
    
}
@media (min-width:414px)  { /* smartphones, iPhone, portrait 480x320 phones */ 
    
  
    
}
@media (min-width:481px)  { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ 

    div.teacher-card {       
        width: 40%;        
    }
}
@media (min-width:641px)  { /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ 
    
  
    div.teacher-card {       
        width: 40%;        
    }
}
@media (min-width:961px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ 

    html {
        font-size: 1.25em;        
    }
    
    div.app-container {                
        position:absolute;
        max-width: 640px;
        left: 50%;
        margin-left: -320px;
    }
  
}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ 
    html {
        font-size: 1.25em;        
    }
    
    div.app-container {                
        position:absolute;
        max-width: 640px;
        left: 50%;
        margin-left: -320px;
    }
  
}
@media (min-width:1281px) { /* hi-res laptops and desktops */ 
    html {
        font-size: 1.25em;        
    }
    /*
    div.container {                
        position:absolute;
        max-width: 640px;
        left: 50%;
        margin-left: -320px;
    }*/
    div.app-container {                
        position:absolute;
        max-width: 640px;
        left: 50%;
        margin-left: -320px;
    }
    
    div.teacher-card {       
        width: 50%;        
    }
 
}

div.validation-message-container { 
    display: block;    
}
div.validation-message-container div.validation-message {
    display: inline-block;
    
    border: 1px solid red;
    border-radius: 3px;
    color: red;
    background-color: white;
    padding: 0.25rem 0.5rem;
}