/*
* @package      Style for TM Header Account Block
* @description  This section holds specific style redeclarations for
*               TM Header Account Block
*/
#header-login {
    flex-shrink: 0;
    position: relative;
    color: #93C63C;
}
#header-login .tm_header_user_info {
    position: relative;
}
#header-login .has-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    text-decoration: none;
    padding-bottom: 20px;
    margin-bottom: -20px;
}
#header-login .has-dropdown i {
    position: relative;
    width: 50px;
    height: 50px;
    color: #93C63C;
    font-size: 20px;
    line-height: 46px;
    text-align: center;
    border: 2px solid #4e5e79;
    border-radius: 50%;
    transition: all .25s ease;
}
#header-login .has-dropdown i::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    margin-left: -8px;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s ease-in-out;
}
#header-login .active i::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#header-login .active .button-labels {
    color: #93C63C;
}
#header-login .has-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    text-transform: capitalize;
    text-align: left;
}
#header-login .has-dropdown a:focus {
    text-decoration: none;
}
#header-login .has-dropdown .button-labels {
    margin: 0;
    transition: color .25s ease;
}
#header-login .tm_header_user_info.active .button-labels {
    color: #93C63C;
}
span.amounteee {
    display: block;
    color: #ddd;
    font-size: 11px;
    line-height: 11px;
}
#header-login .header-login-content {
    overflow-y: auto;
    background: #fff;
    max-height: calc(100vh - 150px);
    width: auto;
    padding: 0 20px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 2;
    opacity: 0;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    box-shadow: 0 0 5px rgba(28,41,62,.5);
    transition: all .25s ease;
    transform: scaleY(0);
    transform-origin: top;
    will-change: transform;
}
#header-login .header-login-content.expanded {
    opacity: 1;
    transform: scaleY(1);
}
#header-login .header-login-content::before {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgb(2,0,36);
    background: linear-gradient(0deg, rgba(2,0,36,0) 0%, rgba(255,255,255,1) 100%);
}
#header-login .header-login-content #create_header_account_error {
    padding: 8px;
}

/*
* @section      Style for login wrapper
* @description  This section holds specific style redeclarations for
*               login content wrapper
*/
.header-login-content {
    padding: 40px;
    margin: 0;
    background: #f7f7f7;
    color: #525252;
}
.header-login-content li ul li{
    margin: 0;
    padding: 5px 0;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.header-login-content li:empty {
    display: none;
}
.header-login-content li.user-data {
    border-bottom: 1px solid #eee;
    display: flex;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 20px;
    column-gap: 15px;
    align-content: stretch;
    align-items: center;
    overflow: hidden;
}
.header-login-content li.user-data p {
    font: 600 18px/25px "Open Sans", Helvetica, Arial, sans-serif;
}
.header-login-content li.user-data p span {
    display: inline-block;
    white-space: nowrap;
    color: #1c293e;
    font-size: 14px;
    font-weight: normal;
}
.header-login-content li ul {
    margin: 0 0 16px;
}
.header-login-content li ul li {
    display: block;
    overflow: hidden;
}
.header-login-content li ul li a {
    color: #2d3c51;
}
.header-login-content li ul li a:hover {
    color: #6bb42a;
}
.header-login-content li ul li a i {
    display: none;
}
.header-login-content li.onecolumn {
    min-width: 205px;
}
.header-login-content li.twocolumns {
    min-width: 405px;
}
.header-login-content li.twocolumns > ul {
    width: 50%;
    float: left;
}
.header-login-content:not(.is-logged) > li {
    width: 275px;
    text-align: center;
}
.header-login-content img {
    max-width: 100%;
}
.header-login-content .form-group label {
    line-height: 20px;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0;
}
.header-login-content .form-group label sup {
    color: #f13340;
}
.header-login-content .form-group .form_info {
    color: #f13340;
}
.header-login-content p.submit {
    padding-top: 3px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}
.header-login-content p.logout {
    margin: 0 0 20px 0;
    overflow: hidden;
    clear: both;
}
.header-login-content .btn-md {
    width: 100%;
    color: #fff;
    padding: 9px 15px 7px;
    border-radius: 0;
}
.header-login-content .btn-md.btn-default {
    background: #6bb42a;
    border: medium none;
    color: #fff;
    line-height: 20px;
    font-weight: 400;
    font-size: 14px;
    padding: 13px 20px;
    position: relative;
    border-radius: 25px;
    margin-top: 0;
    width: 100%;
    text-align: center;
}
.header-login-content .btn-md.btn-default:hover {
    background: #62a527;
}
.header-login-content .btn-md.btn-primary {
    margin-bottom: 11px;
    border: medium none;
    color: #fff;
    line-height: 20px;
    font-weight: 400;
    font-size: 14px;
    padding: 13px 20px;
    position: relative;
    border-radius: 25px;
    margin-top: 0;
    width: 100%;
    text-align: center;
    background: #517d25;
}
.header-login-content .create-account-content .row {
    margin: 0 -3px;
}
.header-login-content .create-account-content .row > div {
    padding: 0 3px;
}
.header-login-content .create-account-content .social-login-buttons div {
    margin-bottom: 15px;
}
.header-login-content .create-account-content .social-login-buttons div.one-element .btn {
    margin-left: 0;
    font-size: 12px;
    line-height: 1.1;
}
.header-login-content .create-account-content .social-login-buttons div.one-element .btn span {
    margin: 0;
}
.header-login-content .create-account-content .social-login-buttons div.one-element .btn:before {
    display: none;
}
.header-login-content .social-login-buttons {
    margin-bottom: 26px;
}
.header-login-content .forgot-password-content .signin i {
    margin-right: 5px;
}
.header-login-content .forgot-password {
    display: inline-block;
    color: #93C63C;
    padding-top: 10px;
}

/*
* @section      Style for social account
*/
.social-login-buttons {
    margin: 0 -4px;
}
.social-login-buttons div {
    margin: 0;
    padding: 0 4px;
    float: left;
}
.social-login-buttons div.one-element {
    width: 100%;
}
.social-login-buttons div.one-element .btn span {
    margin-left: 10px;
}
.social-login-buttons div.two-elements {
    width: 50%;
}
.social-login-buttons div.two-elements .btn span {
    display: none;
}
.social-login-buttons div.three-elements {
    width: 33.33333%;
}
.social-login-buttons div.three-elements .btn span {
    display: none;
}
.social-login-buttons div .btn {
    width: 100%;
    font: bold 15px/28px "Open Sans", Helvetica, Arial, sans-serif;
    color: #fff;
    padding: 9px 15px 7px;
    border-radius: 0;
}
.social-login-buttons div .btn span {
    margin-left: 10px;
}
.social-login-buttons div .btn:before {
    display: inline-block;
    font: normal 21px/1em "FontAwesome";
}
.social-login-buttons div .btn.btn-login-facebook {
    background-color: #3b5998;
}
.social-login-buttons div .btn.btn-login-facebook:before {
    content: '\f09a';
}
.social-login-buttons div .btn.btn-login-facebook:hover {
    background-color: #2d4373;
}
.social-login-buttons div .btn.btn-login-google {
    background-color: #df4a32;
}
.social-login-buttons div .btn.btn-login-google:before {
    content: '\f1a0';
}
.social-login-buttons div .btn.btn-login-google:hover {
    background-color: #c0341e;
}
.social-login-buttons div .btn.btn-login-vk {
    background-color: #3383c1;
}
.social-login-buttons div .btn.btn-login-vk:before {
    content: '\f189';
}
.social-login-buttons div .btn.btn-login-vk:hover {
    background-color: #286899;
}

/*
* @section      Style for left and right sidebars
* @description  This section holds specific style redeclarations for
*               left and right sidebars
*/
.tmha-sidebar-left, .tmha-sidebar-right {
    background: #f7f7f7;
    height: 100%;
    position: fixed;
    transition: all 0.3s ease;
    top: 0;
    z-index: 99999;
    overflow: auto;
    max-height: 100%;
}

.tmha-sidebar-left {
    left: 0;
    transform: translateX(-100%);
}

.tmha-sidebar-right {
    right: 0;
    transform: translateX(100%);
}
.tmha-sidebar-right .tmha-close-btn {
    right: auto;
    left: 19px;
}

.tmha-sidebar-left.active {
    left: 0;
    transform: translateX(0);
}

.tmha-sidebar-right.active {
    right: 0;
    transform: translateX(0);
}

.tmha-close-btn {
    position: absolute;
    top: 15px;
    right: 19px;
    cursor: pointer;
    display: block;
    color: #b0b0b0;
    outline: none !important;
    transition: all 0.3s ease;
    transform: scale(1);
}
.tmha-close-btn:before {
    font: normal 18px/1.1 "FontAwesome";
    content: '\f00d';
}
.tmha-close-btn:hover {
    color: #333;
}

/*
* @section      Style for left and right columns
* @description  This section holds specific style redeclarations for
*               left and right columns
*/
#columns .header-login-content {
    padding: 20px;
}
#columns .header-login-content li.user-data p span {
    display: inline-block;
}
#columns .header-login-content li.user-data img {
    float: none;
}
#columns .header-login-content:not(.is-logged) li {
    width: 100%;
}
@media (min-width: 1200px) {
    #columns #center_column .social-login-buttons div .btn span {
        display: inline-block;
        font-size: 13px;
    }
}
@media (min-width: 1200px) {
    #columns #center_column .social-login-buttons div .btn span {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    #header-login .has-dropdown i {
        border-color: transparent;
    }
}
