* {
	box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
}
*:after,
*:before {
	box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
}
html {
	font: normal 18px / 20px Montserrat, "Segoe UI", Arial, Tahoma, Verdana, sans-serif;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    cursor: default;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: var(--bg-color);
    color: var(--text-color);

    /* Gradient Code (Unused) */
    /* background: hsla(216, 72%, 68%, 1);

    background: linear-gradient(180deg, hsla(216, 72%, 68%, 0.7) 0%, hsla(216, 30%, 45%, 1) 0%, hsla(216, 26%, 38%, 1) 0%, hsla(213, 19%, 46%, 1) 0%, hsla(215, 21%, 28%, 1) 1%, hsla(214, 8%, 18%, 1) 38%);

    background: -moz-linear-gradient(180deg, hsla(216, 72%, 68%, 0.7) 0%, hsla(216, 30%, 45%, 1) 0%, hsla(216, 26%, 38%, 1) 0%, hsla(213, 19%, 46%, 1) 0%, hsla(215, 21%, 28%, 1) 1%, hsla(214, 8%, 18%, 1) 38%);

    background: -webkit-linear-gradient(180deg, hsla(216, 72%, 68%, 0.7) 0%, hsla(216, 30%, 45%, 1) 0%, hsla(216, 26%, 38%, 1) 0%, hsla(213, 19%, 46%, 1) 0%, hsla(215, 21%, 28%, 1) 1%, hsla(214, 8%, 18%, 1) 38%);

    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#71A1E8", endColorstr="#516C95", GradientType=1 ); 
    
    Box Shadow
    
    box-shadow: -20px 200px 140px -60px rgb(118 160 224 / 15%) inset;

    */
}

:root {
    /* Dark */
    --gray-1: #d4d5d5;
    --gray-2: #bfbfc1;
    --gray-3: #a9aaac;
    --gray-4: #949597;
    --gray-5: #7e8082;
    --gray-6: #696b6d;
    --gray-7: #535559;
    --gray-8: #3d4044;
    --gray-9: #2a2d31;
    --gray-10: #232629;
    --gray-11: #1d1f22;

    --primary-blue-01: #71a1e8;
    --primary-blue: #5c90e0;
    --primary-blue-02: #4b80d2;

    --secondary-blue-01: #00a8ff;

    --primary-gold: #dcba00;

    --primary-red: #e44d4d;
    --secondary-red: #e64949;

    --secondary-green: #3ca23c;

    /* Padding */
	--default-padding: 0.77em;

	/* Margin */
    --default-margin: 0.77em;
    
    scrollbar-color: dark;
}

/* Dark Theme */
.dark {
    color-scheme: dark;

    --bg-color: var(--gray-9);
    --text-color: var(--gray-2);
    --caption-color: var(--gray-5);
    --primary-color: var(--primary-blue);

    /* Inputs */
    --lg-search-color-1: var(--gray-8);
    --search-text-color: var(--gray-1);
    --input-placeholder-color: var(--gray-4);
    --input-hover-border-color: var(--gray-7);

    /* User Account Component */
    --user-account-dropdownarrow-fill-color: var(--gray-5);
    --user-account-dropdownarrow-hover-fill-color: var(--gray-3);

    /* Empty State */
    --empty-state-article-color: var(--gray-4);

    /* Links */
    --link-primary-color: var(--primary-blue);

    /* Icon component */
    --icon-lg-bg-color-1: var(--gray-8);

    /* Buttons */
    --button-primary-bg-color: var(--primary-blue);
    --button-primary-hover-bg-color: var(--primary-blue-01);
    --button-primary-active-bg-color: var(--primary-blue-02);
    --button-primary-focus-bg-color: var(--primary-blue-02);

    /* Header Icon */
    --header-icon-button-hover-bg-color: var(--gray-8);

    /* Sidebar Color */
    --sidebar-head-color: var(--gray-5);

    /* Song List */
    --song-caption-color: var(--gray-4);

    /* Line */
    --line-bg-color: var(--gray-8);
    --line-text-color: var(--gray-6);
    --line-text-bg-color: var(--gray-9);

    /* Progress Bar */
    --player-progress-bar-bg-color: var(--gray-8);
    --player-volume-slider-bg-color: var(--gray-7);

    /* Player */
    --player-bg-color: var(--gray-10);

    /* Player Button */
    --player-button-hover-bg-color: var(--gray-9);

    /* Scrollbars */
    --scrollbar-thumb-bg-color: var(--gray-11);

    /* Volume Slider */
    --volume-slider-bg-color: var(--gray-8);

    /* Dropdown */
    --dropdown-bg-color: var(--gray-8);
    --dropdown-item-hover-bg-color: var(--gray-7);

    /* Icon Button Component */
    --search-icon-color: var(--gray-5);
    --icon-hover-bg-color: var(--gray-7);
    --icon-hover-fill-color: var(--gray-3);

    /* Room Control Buttons */
    --room-control-btn-hover-bg-color: var(--gray-8);
    --room-control-btn-fill-color: var(--gray-5);
    --room-control-btn-hover-fill-color: var(--gray-2);

    /* Alert */
    --alert-icon-primary-fill-color: var(--gray-4);

    /* Status Message */
    --user-status-message-bg-color: var(--gray-10);

    /* Checkbox */
    --checkbox-bg-color: var(--gray-8);
    --checkbox-hover-bg-color: var(--gray-7);
    --checkbox-checked-bg-color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6,
span, article, p, button {
    user-select: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
}

body.auth {
    background-color: var(--gray-10);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1286' height='643' viewBox='0 0 1600 800'%3E%3Cpath fill='%235c90e0' d='M1102.5 734.8c2.5-1.2 24.8-8.6 25.6-7.5.5.7-3.9 23.8-4.6 24.5C1123.3 752.1 1107.5 739.5 1102.5 734.8zM1226.3 229.1c0-.1-4.9-9.4-7-14.2-.1-.3-.3-1.1-.4-1.6-.1-.4-.3-.7-.6-.9-.3-.2-.6-.1-.8.1l-13.1 12.3c0 0 0 0 0 0-.2.2-.3.5-.4.8 0 .3 0 .7.2 1 .1.1 1.4 2.5 2.1 3.6 2.4 3.7 6.5 12.1 6.5 12.2.2.3.4.5.7.6.3 0 .5-.1.7-.3 0 0 1.8-2.5 2.7-3.6 1.5-1.6 3-3.2 4.6-4.7 1.2-1.2 1.6-1.4 2.1-1.6.5-.3 1.1-.5 2.5-1.9C1226.5 230.4 1226.6 229.6 1226.3 229.1zM33 770.3C33 770.3 33 770.3 33 770.3c0-.7-.5-1.2-1.2-1.2-.1 0-.3 0-.4.1-1.6.2-14.3.1-22.2 0-.3 0-.6.1-.9.4-.2.2-.4.5-.4.9 0 .2 0 4.9.1 5.9l.4 13.6c0 .3.2.6.4.9.2.2.5.3.8.3 0 0 .1 0 .1 0 7.3-.7 14.7-.9 22-.6.3 0 .7-.1.9-.3.2-.2.4-.6.4-.9C32.9 783.3 32.9 776.2 33 770.3z'/%3E%3Cpath fill='%235c90e0' d='M171.1 383.4c1.3-2.5 14.3-22 15.6-21.6.8.3 11.5 21.2 11.5 22.1C198.1 384.2 177.9 384 171.1 383.4zM596.4 711.8c-.1-.1-6.7-8.2-9.7-12.5-.2-.3-.5-1-.7-1.5-.2-.4-.4-.7-.7-.8-.3-.1-.6 0-.8.3L574 712c0 0 0 0 0 0-.2.2-.2.5-.2.9 0 .3.2.7.4.9.1.1 1.8 2.2 2.8 3.1 3.1 3.1 8.8 10.5 8.9 10.6.2.3.5.4.8.4.3 0 .5-.2.6-.5 0 0 1.2-2.8 2-4.1 1.1-1.9 2.3-3.7 3.5-5.5.9-1.4 1.3-1.7 1.7-2 .5-.4 1-.7 2.1-2.4C596.9 713.1 596.8 712.3 596.4 711.8zM727.5 179.9C727.5 179.9 727.5 179.9 727.5 179.9c.6.2 1.3-.2 1.4-.8 0-.1 0-.2 0-.4.2-1.4 2.8-12.6 4.5-19.5.1-.3 0-.6-.2-.8-.2-.3-.5-.4-.8-.5-.2 0-4.7-1.1-5.7-1.3l-13.4-2.7c-.3-.1-.7 0-.9.2-.2.2-.4.4-.5.6 0 0 0 .1 0 .1-.8 6.5-2.2 13.1-3.9 19.4-.1.3 0 .6.2.9.2.3.5.4.8.5C714.8 176.9 721.7 178.5 727.5 179.9zM728.5 178.1c-.1-.1-.2-.2-.4-.2C728.3 177.9 728.4 178 728.5 178.1z'/%3E%3Cg fill-opacity='0.12' fill='%23FFF'%3E%3Cpath d='M699.6 472.7c-1.5 0-2.8-.8-3.5-2.3-.8-1.9 0-4.2 1.9-5 3.7-1.6 6.8-4.7 8.4-8.5 1.6-3.8 1.7-8.1.2-11.9-.3-.9-.8-1.8-1.2-2.8-.8-1.7-1.8-3.7-2.3-5.9-.9-4.1-.2-8.6 2-12.8 1.7-3.1 4.1-6.1 7.6-9.1 1.6-1.4 4-1.2 5.3.4 1.4 1.6 1.2 4-.4 5.3-2.8 2.5-4.7 4.7-5.9 7-1.4 2.6-1.9 5.3-1.3 7.6.3 1.4 1 2.8 1.7 4.3.5 1.1 1 2.2 1.5 3.3 2.1 5.6 2 12-.3 17.6-2.3 5.5-6.8 10.1-12.3 12.5C700.6 472.6 700.1 472.7 699.6 472.7zM740.4 421.4c1.5-.2 3 .5 3.8 1.9 1.1 1.8.4 4.2-1.4 5.3-3.7 2.1-6.4 5.6-7.6 9.5-1.2 4-.8 8.4 1.1 12.1.4.9 1 1.7 1.6 2.7 1 1.7 2.2 3.5 3 5.7 1.4 4 1.2 8.7-.6 13.2-1.4 3.4-3.5 6.6-6.8 10.1-1.5 1.6-3.9 1.7-5.5.2-1.6-1.4-1.7-3.9-.2-5.4 2.6-2.8 4.3-5.3 5.3-7.7 1.1-2.8 1.3-5.6.5-7.9-.5-1.3-1.3-2.7-2.2-4.1-.6-1-1.3-2.1-1.9-3.2-2.8-5.4-3.4-11.9-1.7-17.8 1.8-5.9 5.8-11 11.2-14C739.4 421.6 739.9 421.4 740.4 421.4zM261.3 590.9c5.7 6.8 9 15.7 9.4 22.4.5 7.3-2.4 16.4-10.2 20.4-3 1.5-6.7 2.2-11.2 2.2-7.9-.1-12.9-2.9-15.4-8.4-2.1-4.7-2.3-11.4 1.8-15.9 3.2-3.5 7.8-4.1 11.2-1.6 1.2.9 1.5 2.7.6 3.9-.9 1.2-2.7 1.5-3.9.6-1.8-1.3-3.6.6-3.8.8-2.4 2.6-2.1 7-.8 9.9 1.5 3.4 4.7 5 10.4 5.1 3.6 0 6.4-.5 8.6-1.6 4.7-2.4 7.7-8.6 7.2-15-.5-7.3-5.3-18.2-13-23.9-4.2-3.1-8.5-4.1-12.9-3.1-3.1.7-6.2 2.4-9.7 5-6.6 5.1-11.7 11.8-14.2 19-2.7 7.7-2.1 15.8 1.9 23.9.7 1.4.1 3.1-1.3 3.7-1.4.7-3.1.1-3.7-1.3-4.6-9.4-5.4-19.2-2.2-28.2 2.9-8.2 8.6-15.9 16.1-21.6 4.1-3.1 8-5.1 11.8-6 6-1.4 12 0 17.5 4C257.6 586.9 259.6 588.8 261.3 590.9z'/%3E%3Ccircle cx='1013.7' cy='153.9' r='7.1'/%3E%3Ccircle cx='1024.3' cy='132.1' r='7.1'/%3E%3Ccircle cx='1037.3' cy='148.9' r='7.1'/%3E%3Cpath d='M1508.7 297.2c-4.8-5.4-9.7-10.8-14.8-16.2 5.6-5.6 11.1-11.5 15.6-18.2 1.2-1.7.7-4.1-1-5.2-1.7-1.2-4.1-.7-5.2 1-4.2 6.2-9.1 11.6-14.5 16.9-4.8-5-9.7-10-14.7-14.9-1.5-1.5-3.9-1.5-5.3 0-1.5 1.5-1.5 3.9 0 5.3 4.9 4.8 9.7 9.8 14.5 14.8-1.1 1.1-2.3 2.2-3.5 3.2-4.1 3.8-8.4 7.8-12.4 12-1.4 1.5-1.4 3.8 0 5.3 0 0 0 0 0 0 1.5 1.4 3.9 1.4 5.3-.1 3.9-4 8.1-7.9 12.1-11.7 1.2-1.1 2.3-2.2 3.5-3.3 4.9 5.3 9.8 10.6 14.6 15.9.1.1.1.1.2.2 1.4 1.4 3.7 1.5 5.2.2C1510 301.2 1510.1 298.8 1508.7 297.2zM327.6 248.6l-.4-2.6c-1.5-11.1-2.2-23.2-2.3-37 0-5.5 0-11.5.2-18.5 0-.7 0-1.5 0-2.3 0-5 0-11.2 3.9-13.5 2.2-1.3 5.1-1 8.5.9 5.7 3.1 13.2 8.7 17.5 14.9 5.5 7.8 7.3 16.9 5 25.7-3.2 12.3-15 31-30 32.1L327.6 248.6zM332.1 179.2c-.2 0-.3 0-.4.1-.1.1-.7.5-1.1 2.7-.3 1.9-.3 4.2-.3 6.3 0 .8 0 1.7 0 2.4-.2 6.9-.2 12.8-.2 18.3.1 12.5.7 23.5 2 33.7 11-2.7 20.4-18.1 23-27.8 1.9-7.2.4-14.8-4.2-21.3l0 0C347 188.1 340 183 335 180.3 333.6 179.5 332.6 179.2 332.1 179.2zM516.3 60.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C517.3 60.4 516.8 60.8 516.3 60.8zM506.1 70.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C506.4 70.5 506.2 70.5 506.1 70.5zM494.1 64.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C494.7 64.3 494.4 64.4 494.1 64.4zM500.5 55.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C500.9 55.3 500.7 55.3 500.5 55.3zM506.7 55c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C507.4 54.8 507.1 55 506.7 55zM1029.3 382.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C1030.3 382.4 1029.8 382.8 1029.3 382.8zM1019.1 392.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C1019.4 392.5 1019.2 392.5 1019.1 392.5zM1007.1 386.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C1007.7 386.3 1007.4 386.4 1007.1 386.4zM1013.5 377.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C1013.9 377.3 1013.7 377.3 1013.5 377.3zM1019.7 377c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C1020.4 376.8 1020.1 377 1019.7 377zM1329.7 573.4c-1.4 0-2.9-.2-4.5-.7-8.4-2.7-16.6-12.7-18.7-20-.4-1.4-.7-2.9-.9-4.4-8.1 3.3-15.5 10.6-15.4 21 0 1.5-1.2 2.7-2.7 2.8 0 0 0 0 0 0-1.5 0-2.7-1.2-2.7-2.7-.1-6.7 2.4-12.9 7-18 3.6-4 8.4-7.1 13.7-8.8.5-6.5 3.1-12.9 7.4-17.4 7-7.4 18.2-8.9 27.3-10.1l.7-.1c1.5-.2 2.9.9 3.1 2.3.2 1.5-.9 2.9-2.3 3.1l-.7.1c-8.6 1.2-18.4 2.5-24 8.4-3 3.2-5 7.7-5.7 12.4 7.9-1 17.7 1.3 24.3 5.7 4.3 2.9 7.1 7.8 7.2 12.7.2 4.3-1.7 8.3-5.2 11.1C1335.2 572.4 1332.6 573.4 1329.7 573.4zM1311 546.7c.1 1.5.4 3 .8 4.4 1.7 5.8 8.7 14.2 15.1 16.3 2.8.9 5.1.5 7.2-1.1 2.7-2.1 3.2-4.8 3.1-6.6-.1-3.2-2-6.4-4.8-8.3C1326.7 547.5 1317.7 545.6 1311 546.7z'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}
.content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: auto;
}
.auth .header {
    background-color: #33363a;
}
.sign-up .logo {
    margin-top: calc(var(--default-margin) * 4);
}
.auth .logo {
	color: #FFF;
}
.auth .logo > img {
    width: 150px;
    margin-bottom: -6px;
}

/* Links */
.link-primary {
    font-size: inherit;
    font-weight: 600;
    color: var(--link-primary-color);
    cursor: pointer;
    text-decoration: none;
}
.link-primary:hover {
    text-decoration: underline;
}

.md-text {
    font-size: .85rem;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

p,
span,
article {
    font-size: 0.83rem;
    font-weight: 500;
}

.flex-1 {
    flex: 1;
}
.fl-right {
    float: right;
}
.d-none {
    display: none !important;
}
.d-flex {
    display: flex;
}
.d-inlineflex {
    display: inline-flex;
}
.flex-dir-col {
    flex-direction: column;
}
.flex-dir-col-rev {
    flex-direction: column-reverse;
}
.align-items-f-start {
    align-items: flex-start;
}
.at-center {
    align-items: center;
}
.jc-center {
    justify-content: center;
}
.tx-center {
    text-align: center;
}

/* Toggle */
 svg .svg-elem-1 {
    stroke-dashoffset: 60.39312744140625px;
    stroke-dasharray: 60.39312744140625px;
    -webkit-transition: stroke-dashoffset 1s ease-in-out 0s;
            transition: stroke-dashoffset 1s ease-in-out 0s;
  }
  
  svg.active .svg-elem-1 {
    stroke-dashoffset: 0;
  }
  
  svg .svg-elem-2 {
    stroke-dashoffset: 33.11269760131836px;
    stroke-dasharray: 33.11269760131836px;
    -webkit-transition: stroke-dashoffset 1s ease-in-out 0.12s;
            transition: stroke-dashoffset 1s ease-in-out 0.12s;
  }
  
  svg.active .svg-elem-2 {
    stroke-dashoffset: 0;
  }
  

.toggle-box {
    cursor: pointer;
}
.toggle-box input {
    display: none;
}
.toggle-box > label span {
    transition: transform 0.2s ease 0s;
}
.toggle-box label .two {
    display: none;
}
.toggle-box label .one .svg-elem-1 {
    stroke-dashoffset: 0;
}
.toggle-box label .one .svg-elem-2 {
    stroke-dashoffset: 33.11269760131836px;
    stroke-dasharray: 33.11269760131836px;
    -webkit-transition: stroke-dashoffset 0.3s ease 0.1s;
            transition: stroke-dashoffset 0.3s ease 0.1s;
}
.toggle-box input:checked + label .one .svg-elem-2  {
    stroke-dashoffset: 0;
}
.toggle-box:hover > label span {
    transform: scale(1.2);
}
.toggle-box > label,
.toggle-box > label > label,
.toggle-box > label span {
    display: inline-flex;
    cursor: pointer;
}

/* Toggle End */

.body-input > h2 {
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin: 0;
    text-shadow: 0 1px 0px rgba(0, 0, 0, 0.62);
    padding-top: 30px;
}
.input-body {
    background-color: var(--gray-9);
    box-shadow: 0 10px 25px -10px rgb(0 0 0 / 45%);
    border-radius: 5px;
    padding: 35px 40px;
    text-align: left;
    max-width: 440px;
    margin: 50px auto;
}
.input-body h1 {
    font-size: 23px;
    font-weight: 500;
    margin: 0;
    text-align: center;
}
.input-body h2 {
    font-size: 15px;
    font-weight: 500;
    color: #8c9398;
    margin: 10px 0 5px 0;
    text-align: center;
}
.input-body.log-in h2 {
	margin: 10px 0 5px 0;
}
.input-body.log-in .input-box {
	margin-top: 0;
}
.input-body.log-in .input-box .box-ft {
	margin-top: 35px;
}
.input-box > label {
	width: 100%;
    margin-top: 20px;
    cursor: text;
}
.input-box > label > input {
    width: 100%;
}
.input-box .full-name .input {
	width: 47.5%;
}
.input-box .full-name .input + .input {
	margin-left: 20px;
}
.input-box p {
    font-size: 14px;
    margin: 25px 0 20px 0;
    font-weight: 500;
    line-height: 1.7;
}
.input-box p > a {
    font-size: 14px;
}
.input-box .box-ft {
	margin-top: 20px;
    text-align: center;
}
.input-box .box-ft .btn {
	width: 100%;
	margin-bottom: 25px;
}
.input-box .box-ft > span {
    display: inline-block;
    color: #8b9398;
    margin: 0 5px;
    font-weight: 500;
    font-size: 15px;
}
.password-eye {
    position: absolute;
    display: inline-flex;
    right: 0;
    height: 100%;
    width: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    fill: #006bd8;
}
.password-eye + input {
    padding: 15px 52px 15px 15px;
}

.form-error-text {
    display: none;
    font-size: .74rem;
    color: var(--secondary-red);
    margin-bottom: 5px;
}
.form-error-text > span {
    margin-right: 5px;
}
.form-error-text > span > svg {
    fill: var(--secondary-red);
}

input.input {   
    font-family: inherit;
    font-weight: 500;
    font-size: 0.85rem;
    border: 2px solid var(--lg-search-color-1);
    border-radius: 5px;
    outline: none;
        -webkit-appearance: none;
    background-color: var(--lg-search-color-1);
    padding: .8em;
    color: var(--search-text-color);
    transition: border 0.15s ease 0s;
}
input.input:hover {
    border-color: var(--input-hover-border-color);
}
input.input:focus {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 1px var(--bg-color) inset;
    transition: none;
}
input.input::placeholder {
    color: var(--input-placeholder-color);
}
.input:focus,
.input[type=email]:placeholder-shown:invalid:focus,
.input[type=password]:placeholder-shown:invalid:focus  {
	border-color: var(--primary-color);
    outline: 0;
}
.input[type=email]:placeholder-shown:invalid,
.input[type=password]:placeholder-shown:invalid {
    color: initial;
    border-color: #e6e6e6;
}
input[type=email]:not(:focus):invalid,
input[type=password]:not(:focus):invalid {
    color: #e86868;
    border-color: var(--primary-red);
}
input[type=email]:not(:focus):invalid + .form-error-text,
input[type=password]:not(:focus):invalid + .form-error-text {
    display: flex;
}

.checkbox label .checkbox-primary {
	display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
	display: none;
}
.checkbox label .checkbox-primary .checkbox-tick {
	display: inline-flex;
	align-items: center;
    justify-content: center;
    background-color: var(--checkbox-bg-color);
	border-radius: 3px;
	min-width: 20px;
	height: 20px;
	margin-right: 15px;
	transition: background-color 0.2s ease 0s, border .25s ease 0s;
}
.checkbox:hover label .checkbox-primary .checkbox-tick {
	background-color: var(--checkbox-hover-bg-color);
}
.checkbox.radio label .checkbox-primary .checkbox-tick {
	border-radius: 50%;
}
.checkbox.switch label .checkbox-primary .checkbox-tick {
	align-items: center;
	justify-content: normal;
	border-radius: 50px;
	width: 50px;
	padding: 0 4px;
}
.checkbox label .checkbox-primary .checkbox-tick svg {
	opacity: 0;
	width: 12px;
	height: 12px;
	fill: #FFF;
	transform: scale(1.4);
	transition: transform .2s ease 0s, opacity .2s ease 0s;
}
.checkbox.switch label .checkbox-primary .checkbox-tick svg {
	opacity: 1;
	fill: #c8cfd4;
	transform: translate3d(0, 0, 0);
}
.checkbox.radio label .checkbox-primary .checkbox-tick svg {
	width: 8px;
	height: 8px;
}
.checkbox input[type="checkbox"]:checked + label .checkbox-primary .checkbox-tick,
.checkbox input[type="radio"]:checked + label .checkbox-primary .checkbox-tick {
	background-color: var(--checkbox-checked-bg-color);
}
.checkbox input[type="checkbox"]:checked + label .checkbox-primary .checkbox-tick svg,
.checkbox input[type="radio"]:checked + label .checkbox-primary .checkbox-tick svg {
	opacity: 1;
	transform: scale(1);
	transition: transform .4s ease 0s, opacity .4s ease 0s;
}
.checkbox.switch input[type="checkbox"]:checked + label .checkbox-primary .checkbox-tick svg {
	transform: translate3d(28px, 0, 0);
	transition: transform .2s ease 0s, opacity .2s ease 0s;
	fill: #FFF;
}
.fs-sp {
    font-size: .85rem;
}

@keyframes checkbox-elevate {
	0% {
		box-shadow: 0;
	}
	50% {
		box-shadow: 0 0 0px 7px rgb(16 121 195 / 20%);
	}
	100% {
		box-shadow: 0 0 3px 12px #FFF;
	}
}

.floating-input {
    position: relative;
    display: inline-flex;
}
.floating-input .floater {
	display: inline-block;
    position: absolute;
    background-color: var(--lg-search-color-1);
    font-size: 16px;
    font-weight: 500;
    color: var(--input-placeholder-color);
	left: 14px;
    transition: all .15s ease 0s;
		user-select: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
        -o-user-select:none;
    pointer-events: none;
}
.floating-input input:focus + .floater,
.floating-input input:not(:placeholder-shown) + .floater {
    transform: translate3d(0, calc(-100% - 8px), 0);
    left: 11px;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}
.floating-input input:not(:focus) + .floater {
	color: rgb(113 113 113 / 95%);
}
.floating-input input:not(:focus):invalid + .floater {
	color: #f32727;
	transition: none;
}

.btn.btn-primary {
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    background-color: var(--button-primary-bg-color);
    border: none;
    border-radius: 5px;
	color: #FFF;
    outline: 0;    
    text-shadow: 0 1px 0px rgb(0 0 0 / 15%);
    transition: all .3s ease 0s;
    padding: 1em 1.1em;
    cursor: pointer;
}
.btn.btn-primary:hover {
    background-color: var(--button-primary-hover-bg-color);
    box-shadow: 0 2px 18px -2px rgb(5 7 8 / 32%);
}
.btn.btn-primary:active {
    background-color: var(--button-primary-active-bg-color);
    box-shadow: 0 0 0 0 rgb(5 7 8 / 32%);
    outline: 0;
}
.btn.btn-primary:focus {
    background-color: var(--button-primary-focus-bg-color);
    box-shadow: 0 0 0 0 rgb(5 7 8 / 32%), 0 0 0 2px white inset;
    outline: 0;
    transition: none;
}
.btn .r .loader .path {
    stroke: #ffffff;
    stroke-width: 7px;
}
.btn .r .loader {
    width: 22px;
}
.btn-primary[disabled],
.btn-primary.disabled {
	cursor: not-allowed;
	pointer-events: auto;
}
.btn-primary[disabled]:active,
.btn-primary.disabled:active {
	box-shadow: none;
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
}
.btn[disabled],
.disabled,
input[disabled],
textarea[disabled],
div[disabled] {
	opacity: 0.85;
		filter: alpha(opacity=70);
	box-shadow: none;
		-webkit-box-shadow: none;
		pointer-events: none;
	resize: none;
	cursor: default;
}
label.md-cbox > input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.rm > span {
    font-weight: 500;
}
.margin-top-5 {
    margin-top: 5px;
}
.margin-right-5 {
    margin-right: 5px;
}
.margin-right-15 {
    margin-right: 15px;
}
.margin-right-10 {
    margin-right: 10px;
}
.acc-created {
    padding: 0 0 0 0;
    height: 451px;
}
.acc-created .acc-c-body h1 {
    margin: 35px 0 15px 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.65;
    padding: 0 23px;
}
.acc-created .acc-c-body svg {
    width: 96px;
    height: 96px;
    fill: #2196F3;
}
.acc-created .acc-c-body span {
    font-size: 15px;
    font-weight: 500;
    color: rgb(10 21 37 / 65%);
}
.r .loader {
    position: relative;
    width: 60px;
}
.r .loader .path {
    animation: dash 1.5s ease-in-out infinite;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke: #0077f3;
    stroke-width: 3;
}
.loader-cont {
    display: none; 
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    overflow: hidden;
    z-index: 99;
    width: calc(100% - 245px);
}
.loader {
    position: absolute;
    margin: 0 auto;
    width: 100px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}
.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active { 
    box-shadow: 0 0 0 30px rgba(0, 0, 0, 0.8) inset !important;
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0.8) inset !important;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
   }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
   }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
   }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
   }
}
@keyframes color {
    100%, 0% {
        stroke: #d62d20;
   }
    40% {
        stroke: #0057e7;
   }
    66% {
        stroke: #008744;
   }
    80%, 90% {
        stroke: #ffa700;
   }
}
.showbox {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5%;
}

@media (max-width: 850px) {
    .input-body {
        padding: 25px 20px;
    }
}
@media (max-width: 550px) {
    html {
        font-size: 17px;
    }
    .sign-up .logo {
        margin-top: 60px;
        padding-top: 20px;
    }
    .auth .logo > img {
        width: 160px;
        margin-bottom: -6px;
    }
    input.input {
        padding: .75em;
    }
    .btn.btn-primary {
        padding: .85em .95em;
    }
    .input-body {
        border-radius: 0;
        margin: 30px auto 50px;
    }
    .input-box > label + label {
        margin-top: 20px;
    }
}