@keyframes fadediv {
  from {opacity: 0;}
  to {opacity: 1;}
}

.t-center { text-align: center; }

.t-right { text-align: right; }

.t-left { text-align: left; }

.t-justify { text-align: justify; }

.wpm-row {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: flex;
    width: 100%;
    animation: fadediv 1000ms !important;
}

.wpmblock {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    width: 100%;
    padding: 20px;
    animation: fadediv 1000ms !important;
}

.wpm-row .wpm-col {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    flex: auto;
    padding: 20px;
}

.wpm-row .wpm-col.col-50 {
    max-width: 50%;
}

.wpm-row .wpm-col .wpm-block {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    width: 100%;
}

.wpm-row .wpm-col .wpm-block .fm-group:not(:last-child) {
    margin-bottom: 12px;
}

.jw-row .jw-block .fm-group label,
.wpm-row .wpm-col .wpm-block .fm-group label {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    width: 100%;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 26px;
}

.jw-row .jw-block .fm-group label i,
.wpm-row .wpm-col .wpm-block .fm-group label i {
    color: var(--pri-col) !important;
}

.jw-row .jw-block .fm-group .fm-control,
.wpm-row .wpm-col .wpm-block .fm-group .fm-control {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    background: var(--bg-glo-col) !important;
    border-radius: 4px !important;
    border: solid 2px var(--tx-alt-col) !important;
    box-shadow: 0 0 0 0 transparent !important;
    outline: none !important;
}

.jw-row .jw-block .fm-group select.fm-control,
.wpm-row .wpm-col .wpm-block .fm-group select.fm-control {
    cursor: pointer;
}

.jw-row .jw-block .fm-group .fm-control:focus,
.wpm-row .wpm-col .wpm-block .fm-group .fm-control:focus {
    border: solid 2px var(--pri-col) !important;
}

.jw-row .jw-block .fm-group .btn,
.wpmblock .fm-group .btn,
.wpm-row .wpm-col .wpm-block .fm-group .btn {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: inline-block;
    position: relative;
    padding: 6px 18px;
    background: var(--pri-col) !important;
    color: var(--tx-pri-col) !important;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.04em;
    border: none !important;
    outline: none !important;
}

.jw-row .jw-block .fm-group .btn:hover,
.wpmblock .fm-group .btn:hover,
.wpm-row .wpm-col .wpm-block .fm-group .btn:hover {
    background: var(--sec-col) !important;
}

.jw-row .jw-block .fm-group a,
.wpm-row .wpm-col .wpm-block .fm-group a {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    color: var(--pri-col) !important;
}

.jw-row .jw-block .fm-group a:hover,
.wpm-row .wpm-col .wpm-block .fm-group a:hover {
    color: var(--sec-col) !important;
}

.wpm-row .wpm-col .wpm-block .fm-group .boz-captcha-lab {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    margin-bottom: 0;
    font-style: italic;
}

.wpm-row .wpm-col .wpm-block .fm-group .boz-captcha-lab > span {
    color: var(--pri-col) !important;
}

.wpm-row .wpm-col .wpm-block .fm-group.checkbox .wpm-checkbox-label input {
    display: none;
}

.wpm-row .wpm-col .wpm-block .fm-group.checkbox .wpm-checkbox-label span {
    display: inline-block;
    position: relative;
    margin-left: 52px;
}

.wpm-row .wpm-col .wpm-block .fm-group.checkbox .wpm-checkbox-label .slider {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: inline-block;
    position: relative;
    width: 44px;
    height: 22px;
    border-radius: 11px;
    background-color: var(--bg-alt-col) !important;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 2px;
}

.wpm-row .wpm-col .wpm-block .fm-group.checkbox .wpm-checkbox-label .slider::before {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    content: '';
    background-color: var(--tx-pri-col) !important;
    bottom: 2px;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    left: 2px;
    position: absolute;
}

.wpm-row .wpm-col .wpm-block .fm-group.checkbox .wpm-checkbox-label input:checked + .slider {
    background-color: var(--pri-col) !important;
}

.wpm-row .wpm-col .wpm-block .fm-group.checkbox .wpm-checkbox-label input:checked + .slider::before {
    transform: translateX(22px) !important;
}

.logged-out-login .wpm-recover-password-form {
    display: none;
}

/* WPM note */
.wpm-note {
    display: none;
    position: relative;
    width: 100%;
}

.wpm-note > .jwloader {
    display: block;
    position: relative;
    width: 100%;
    padding: 8px;
    background: var(--tx-pri-col) !important;
    border: solid 1px var(--pri-col) !important;
    border-radius: 6px;
    margin-bottom: 12px;
}

.wpm-note > .jwloader > p {
    margin-bottom: 0;
    color: var(--pri-col);
}

.wpm-note > .jwloader > p > img {
    display: inline-block;
    position: relative;
    width: 38px;
    height: 38px;
    vertical-align: middle;
    top: -2px;
}

.wpm-note > .note {
    display: block;
    position: relative;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    color: #ffffff;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4) !important;
    margin-bottom: 12px;
}

.wpm-note > .note.error { background: rgb(235,0,0) !important; }

.wpm-note > .note.info { background: rgb(0,155,255) !important; }

.wpm-note > .note.success { background: rgb(0,220,170) !important; }

.wpmblock p.notice,
.wpm-block p.notice {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    padding: 12px;
    border-radius: 6px;
    color: #ffffff !important;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    background: var(--pri-col) !important;
}

.wpm-register .register-done,
.wpm-register .register-done .confirmed { display: none; }

.jw-woo-profile {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    width: 100%;
}

.jw-row {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    width: 100%;
    clear: both;
}

#boz_account_logo_upload { display: none; }

.jw-row #avatar {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: inline-block;
    position: relative;
    width: 40%;
}

.jw-row #avatar .fm-group .boz-img {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}

.jw-row #avatar .fm-group .boz-img img {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    object-position: center;
    min-height: 100%;
}

.jw-row #avatar .fm-group .boz-img:hover img {
    transform: scale(1.1);
}

.jw-row #avatar .fm-group .boz-img #remove_account_logo {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 16px;
    top: 10px;
    right: 10px;
    background: var(--pri-col) !important;
    color: var(--tx-pri-col) !important;
    outline: none !important;
}

.jw-row #avatar .fm-group .boz-img #remove_account_logo:hover {
    background: rgb(235,0,0) !important;
}

.jw-row #avatar #account_logo {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    width: 100%;
    padding: 8px 12px;
    background: var(--pri-col) !important;
    color: var(--tx-pri-col) !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    outline: none !important;
}

.jw-row #avatar #account_logo:hover {
    background: var(--sec-col) !important;
}

.jw-row #avatar #boz-avatar #boz_process {
    display: none;
    position: relative;
    width: 100%;
}

.jw-row #avatar #boz-avatar #boz_process .jwloader {
    display: block;
    position: relative;
    width: 100%;
    padding: 8px 12px 12px 12px;
    border-radius: 6px;
    border: solid 1px var(--pri-col) !important;
    background: #ffffff;
    margin-bottom: 12px;
}

.jw-row #avatar #boz-avatar #boz_process .jwloader > p {
    text-align: center;
    color: var(--pri-col) !important;
    margin-bottom: 0;
}

.jw-row #avatar #boz-avatar #boz_process .jwloader > p > img {
    display: inline-block;
    position: relative;
    width: 38px;
    height: 38px;
    vertical-align: middle;
    top: -2px;
}

.jw-row #avatar #boz-avatar #boz_process .jwloader > .progress {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--tx-glo-col) !important;
    border: solid 1px var(--tx-glo-col) !important;
    overflow: hidden;
}

.jw-row #avatar #boz-avatar #boz_process .jwloader > .progress > .prog {
    display: block;
    position: relative;
    width: 0%;
    height: 100%;
    background: var(--sec-col) !important;
    border-radius: 4px;
}

.jw-row #account-details {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    width: calc(60% - 30px);
    float: right;
}

.jw-row h3.label {
    font-size: 20px;
    margin-bottom: 12px;
}

.jw-row .jw-block .fm-group:not(:last-child) {
    margin-bottom: 17px;
}

.jw-row #disconnect-account,
.jw-row #deactivate-account {
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    display: block;
    position: relative;
    width: 100%;
    padding-top: 30px;
}

#boz_note {
    display: none;
    position: relative;
    width: 100%;
    padding: 8px 12px;
    border-radius: 6px;
    color: #ffffff;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: 8px;
}

#boz_note p { margin-bottom: 0; }

#boz_note.error,
.wpmblock p.notice.error,
.wpm-block p.notice.error { background: rgb(235,0,0) !important; }

#boz_note.info,
.wpmblock p.notice.info,
.wpm-block p.notice.info { background: rgb(0,155,255) !important; }

#boz_note.success,
.wpmblock p.notice.success,
.wpm-block p.notice.success { background: rgb(0,220,170) !important; }

/* Media queries */
@media (max-width: 991px){
    
    .wpm-row { display: block; }
    
    .wpm-row .wpm-col.col-50 {
        flex: none;
        width: 100%;
        min-width: 100%;
    }
    
}

@media (max-width: 599px){
    
    .jw-row #avatar {
        display: block;
        width: 100%;
    }
    
    .jw-row #account-details {
        float: unset !important;
        width: 100%;
        margin-top: 30px;
    }
    
}