/* === tjmodals === */
.tjmodal-overlay,
.preloader-indicator-overlay,
.popup-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10600;
    visibility: hidden;
    opacity: 0;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

.tjmodal-overlay.tjmodal-overlay-visible,
.preloader-indicator-overlay.tjmodal-overlay-visible,
.popup-overlay.tjmodal-overlay-visible {
    visibility: visible;
    opacity: 1;
}

.popup-overlay {
    z-index: 10200;
}

.tjmodal {
    width: 300px;
    position: fixed;
    z-index: 11000;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 0;
    height: auto !important;
    top: 10%;
    text-align: center;
    border-radius: 7px;
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(1.185);
    transform: translate3d(0, 0, 0) scale(1.185);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    -ms-transition-property: -ms-transform, opacity;
    -o-transition-property: -o-transform, opacity;
    transition-property: transform, opacity;
    color: #000;
    display: none;
}

.tjmodal.tjmodal-in {
    opacity: 1;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

.tjmodal.tjmodal-out {
    opacity: 0;
    z-index: 10999;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: translate3d(0, 0, 0) scale(0.815);
    transform: translate3d(0, 0, 0) scale(0.815);
}

.tjmodal-inner {
    padding: 15px;
    border-radius: 7px 7px 0 0;
    position: relative;
    background: #e8e8e8;
    -ms-word-break: break-all;
     word-break: break-all;

     /* Non standard for WebKit */
     word-break: break-word;

-webkit-hyphens: auto;
   -moz-hyphens: auto;
        hyphens: auto;
}

.tjmodal-inner:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 1px;
    width: 100%;
    background-color: #b5b5b5;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

html.pixel-ratio-2 .tjmodal-inner:after {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

html.pixel-ratio-3 .tjmodal-inner:after {
    -webkit-transform: scaleY(0.33);
    transform: scaleY(0.33);
}

.tjmodal-title {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}

.tjmodal-title + .tjmodal-text {
    margin-top: 5px;
}

.tjmodal-buttons {
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top:-2px;
}

.tjmodal-buttons.tjmodal-buttons-vertical {
    display: block;
    height: auto;
}

.tjmodal-button {
    width: 100%;
    padding: 0 5px;
    height: 44px;
    font-size: 17px;
    line-height: 44px;
    text-align: center;
    color: #007aff;
    background: #e8e8e8;
    display: block;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -ms-flex: 1;
}

.tjmodal-button:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    left: auto;
    bottom: auto;
    width: 1px;
    height: 100%;
    background-color: #b5b5b5;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

html.pixel-ratio-2 .tjmodal-button:after {
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
}

html.pixel-ratio-3 .tjmodal-button:after {
    -webkit-transform: scaleX(0.33);
    transform: scaleX(0.33);
}

.tjmodal-button:first-child {
    border-radius: 0 0 0 7px;
}

.tjmodal-button:last-child {
    border-radius: 0 0 7px 0;
}

.tjmodal-button:last-child:after {
    display: none;
}

.tjmodal-button:first-child:last-child {
    border-radius: 0 0 7px 7px;
}

.tjmodal-button.tjmodal-button-bold {
    font-weight: 500;
}

html:not(.watch-active-state) .tjmodal-button:active,
.tjmodal-button.active-state {
    background: #d4d4d4;
}

.tjmodal-buttons-vertical .tjmodal-button {
    border-radius: 0;
}

.tjmodal-buttons-vertical .tjmodal-button:after {
    display: none;
}

.tjmodal-buttons-vertical .tjmodal-button:before {
    display: none;
}

.tjmodal-buttons-vertical .tjmodal-button:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 1px;
    width: 100%;
    background-color: #b5b5b5;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

html.pixel-ratio-2 .tjmodal-buttons-vertical .tjmodal-button:after {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

html.pixel-ratio-3 .tjmodal-buttons-vertical .tjmodal-button:after {
    -webkit-transform: scaleY(0.33);
    transform: scaleY(0.33);
}

.tjmodal-buttons-vertical .tjmodal-button:last-child {
    border-radius: 0 0 7px 7px;
}

.tjmodal-buttons-vertical .tjmodal-button:last-child:after {
    display: none;
}

.tjmodal-no-buttons .tjmodal-inner {
    border-radius: 7px;
}

.tjmodal-no-buttons .tjmodal-inner:after {
    display: none;
}

.tjmodal-no-buttons .tjmodal-buttons {
    display: none;
}

.actions-tjmodal {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 11000;
    width: 100%;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.actions-tjmodal.tjmodal-in {
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.actions-tjmodal.tjmodal-out {
    z-index: 10999;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.actions-tjmodal-group {
    margin: 8px;
}

.actions-tjmodal-button,
.actions-tjmodal-label {
    width: 100%;
    text-align: center;
    font-weight: normal;
    margin: 0;
    background: rgba(243, 243, 243, 0.95);
    box-sizing: border-box;
    display: block;
    position: relative;
}

.actions-tjmodal-button:after,
.actions-tjmodal-label:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 1px;
    width: 100%;
    background-color: #d2d2d6;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

html.pixel-ratio-2 .actions-tjmodal-button:after,
html.pixel-ratio-2 .actions-tjmodal-label:after {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

html.pixel-ratio-3 .actions-tjmodal-button:after,
html.pixel-ratio-3 .actions-tjmodal-label:after {
    -webkit-transform: scaleY(0.33);
    transform: scaleY(0.33);
}

.actions-tjmodal-button a,
.actions-tjmodal-label a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.actions-tjmodal-button b,
.actions-tjmodal-label b {
    font-weight: 500;
}

.actions-tjmodal-button.actions-tjmodal-button-bold,
.actions-tjmodal-label.actions-tjmodal-button-bold {
    font-weight: 500;
}

.actions-tjmodal-button.actions-tjmodal-button-red,
.actions-tjmodal-label.actions-tjmodal-button-red {
    color: #ff3b30;
}

.actions-tjmodal-button:first-child,
.actions-tjmodal-label:first-child {
    border-radius: 4px 4px 0 0;
}

.actions-tjmodal-button:last-child,
.actions-tjmodal-label:last-child {
    border-radius: 0 0 4px 4px;
}

.actions-tjmodal-button:last-child:after,
.actions-tjmodal-label:last-child:after {
    display: none;
}

.actions-tjmodal-button:first-child:last-child,
.actions-tjmodal-label:first-child:last-child {
    border-radius: 4px;
}

.actions-tjmodal-button.disabled,
.actions-tjmodal-label.disabled {
    opacity: 0.95;
    color: #8e8e93;
}

.actions-tjmodal-button {
    cursor: pointer;
    line-height: 43px;
    font-size: 20px;
    color: #007aff;
}

html:not(.watch-active-state) .actions-tjmodal-button:active,
.actions-tjmodal-button.active-state {
    background: #dcdcdc;
}

.actions-tjmodal-label {
    font-size: 13px;
    line-height: 1.3;
    min-height: 44px;
    padding: 8px 10px;
    color: #8a8a8a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

input.tjmodal-text-input {
    box-sizing: border-box;
    height: 30px;
    background: #fff;
    margin: 0;
    margin-top: 15px;
    padding: 0 5px;
    border: 1px solid #a0a0a0;
    border-radius: 5px;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    display: block;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

input.tjmodal-text-input + input.tjmodal-text-input {
    margin-top: 5px;
}

.tjmodal-input-double input.tjmodal-text-input {
    border-radius: 5px 5px 0 0;
}

.tjmodal-input-double + .tjmodal-input-double input.tjmodal-text-input {
    border-top: 0;
    border-radius: 0 0 5px 5px;
    margin-top: 0;
}

.tpopover {
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 11000;
    margin: 0;
    top: 0;
    opacity: 0;
    left: 0;
    border-radius: 7px;
    position: absolute;
    display: none;
    -webkit-transform: none;
    transform: none;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -ms-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}

.tpopover.tjmodal-in {
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    opacity: 1;
}

.tpopover .list-block {
    margin: 0;
}

.tpopover .list-block ul {
    background: none;
}

.tpopover .list-block:first-child ul {
    border-radius: 7px 7px 0 0;
}

.tpopover .list-block:first-child ul:before {
    display: none;
}

.tpopover .list-block:first-child li:first-child a {
    border-radius: 7px 7px 0 0;
}

.tpopover .list-block:last-child ul {
    border-radius: 0 0 7px 7px;
}

.tpopover .list-block:last-child ul:after {
    display: none;
}

.tpopover .list-block:last-child li:last-child a {
    border-radius: 0 0 7px 7px;
}

.tpopover .list-block:first-child:last-child li:first-child:last-child a,
.tpopover .list-block:first-child:last-child ul:first-child:last-child {
    border-radius: 7px;
}

.tpopover .list-block + .list-block {
    margin-top: 35px;
}

.tpopover-angle {
    width: 26px;
    height: 26px;
    position: absolute;
    left: -26px;
    top: 0;
    z-index: 100;
    overflow: hidden;
}

.tpopover-angle:after {
    content: ' ';
    background: rgba(255, 255, 255, 0.95);
    width: 26px;
    height: 26px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.tpopover-angle.on-left {
    left: -26px;
}

.tpopover-angle.on-left:after {
    left: 19px;
    top: 0;
}

.tpopover-angle.on-right {
    left: 100%;
}

.tpopover-angle.on-right:after {
    left: -19px;
    top: 0;
}

.tpopover-angle.on-top {
    left: 0;
    top: -26px;
}

.tpopover-angle.on-top:after {
    left: 0;
    top: 19px;
}

.tpopover-angle.on-bottom {
    left: 0;
    top: 100%;
}

.tpopover-angle.on-bottom:after {
    left: 0;
    top: -19px;
}

.tpopover-inner {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.actions-tpopover .list-block + .list-block {
    margin-top: 20px;
}

.actions-tpopover .list-block ul {
    background: #fff;
}

.actions-tpopover-label {
    padding: 8px 10px;
    color: #8a8a8a;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
    position: relative;
}

.actions-tpopover-label:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 1px;
    width: 100%;
    background-color: #d2d2d6;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

html.pixel-ratio-2 .actions-tpopover-label:after {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

html.pixel-ratio-3 .actions-tpopover-label:after {
    -webkit-transform: scaleY(0.33);
    transform: scaleY(0.33);
}

.actions-tpopover-label:last-child:after {
    display: none;
}

.popup,
.login-screen {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10400;
    background: #fff;
    box-sizing: border-box;
    display: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -ms-transition-property: -ms-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.popup.tjmodal-in,
.login-screen.tjmodal-in,
.popup.tjmodal-out,
.login-screen.tjmodal-out {
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

.popup.tjmodal-in,
.login-screen.tjmodal-in {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.popup.tjmodal-out,
.login-screen.tjmodal-out {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.login-screen.tjmodal-in,
.login-screen.tjmodal-out {
    display: block;
}

@media all and (min-width: 630px) and (min-height: 630px) {
    .popup:not(.tablet-fullscreen) {
        width: 630px;
        height: 630px;
        left: 50%;
        top: 50%;
        margin-left: -315px;
        margin-top: -315px;
        -webkit-transform: translate3d(0, 1024px, 0);
        transform: translate3d(0, 1024px, 0);
    }

    .popup:not(.tablet-fullscreen).tjmodal-in {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .popup:not(.tablet-fullscreen).tjmodal-out {
        -webkit-transform: translate3d(0, 1024px, 0);
        transform: translate3d(0, 1024px, 0);
    }
}

@media all and (max-width: 629px), (max-height: 629px) {
    html.with-statusbar-overlay .popup {
        height: -webkit-calc(100% - 20px);
        height: calc(100% - 20px);
        top: 20px;
    }

    html.with-statusbar-overlay .popup-overlay {
        z-index: 9800;
    }
}

html.with-statusbar-overlay .login-screen,
html.with-statusbar-overlay .popup.tablet-fullscreen {
    height: -webkit-calc(100% - 20px);
    height: calc(100% - 20px);
    top: 20px;
}

.tjmodal .preloader {
    width: 34px;
    height: 34px;
}

.preloader-indicator-overlay {
    visibility: visible;
    opacity: 0;
    background: none;
}

.preloader-indicator-tjmodal {
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 8px;
    margin-left: -25px;
    margin-top: -25px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 11000;
    border-radius: 5px;
}

.preloader-indicator-tjmodal .preloader {
    display: block;
    width: 34px;
    height: 34px;
}

.picker-tjmodal {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 260px;
    z-index: 11500;
    display: none;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -ms-transition-property: -ms-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    background: #cfd5da;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.picker-tjmodal.tjmodal-in,
.picker-tjmodal.tjmodal-out {
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
}

.picker-tjmodal.tjmodal-in {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.picker-tjmodal.tjmodal-out {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.picker-tjmodal .picker-tjmodal-inner {
    height: 100%;
    position: relative;
}

.picker-tjmodal .toolbar {
    position: relative;
    width: 100%;
}

.picker-tjmodal .toolbar:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: auto;
    right: auto;
    height: 1px;
    width: 100%;
    background-color: #929499;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}

html.pixel-ratio-2 .picker-tjmodal .toolbar:before {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

html.pixel-ratio-3 .picker-tjmodal .toolbar:before {
    -webkit-transform: scaleY(0.33);
    transform: scaleY(0.33);
}

.picker-tjmodal .toolbar + .picker-tjmodal-inner {
    height: -webkit-calc(100% - 44px);
    height: -moz-calc(100% - 44px);
    height: calc(100% - 44px);
}

.picker-tjmodal.picker-tjmodal-inline,
.tpopover .picker-tjmodal {
    display: block;
    position: relative;
    background: none;
    z-index: inherit;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.picker-tjmodal.picker-tjmodal-inline .toolbar:before,
.tpopover .picker-tjmodal .toolbar:before {
    display: none;
}

.picker-tjmodal.picker-tjmodal-inline .toolbar:after,
.tpopover .picker-tjmodal .toolbar:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: auto;
    top: auto;
    height: 1px;
    width: 100%;
    background-color: #929499;
    display: block;
    z-index: 15;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

html.pixel-ratio-2 .picker-tjmodal.picker-tjmodal-inline .toolbar:after,
html.pixel-ratio-2 .tpopover .picker-tjmodal .toolbar:after {
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
}

html.pixel-ratio-3 .picker-tjmodal.picker-tjmodal-inline .toolbar:after,
html.pixel-ratio-3 .tpopover .picker-tjmodal .toolbar:after {
    -webkit-transform: scaleY(0.33);
    transform: scaleY(0.33);
}

.tpopover .picker-tjmodal {
    width: auto;
}

.tpopover .picker-tjmodal .toolbar {
    background: none;
}

/* === Preloader === */
.preloader {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
    -webkit-animation: preloader-spin 1s steps(12, end) infinite;
    animation: preloader-spin 1s steps(12, end) infinite;
}

.tjmodal-input{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 8px;
    border: 1px solid #b5b5b5;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px;
}
.tjmodal-input:focus{
    outline: 0;
}

.preloader-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}
