﻿/************
 Animations
************/

@keyframes dotline-move {
    40% {
        transform: translateX(0px);
        opacity: 0.8;
    }

    100% {
        transform: translateX(300px);
        opacity: 0;
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
        visibility: visible;
    }
}



/************
 Templates
************/

.neutral-blue {
    background-color: rgba(102,160,191, 0.25) !important;
}

.neutral-blue-dark {
    background-color: rgba(102,160,191, 0.37) !important;
}

.neutral-blue-dark-border {
    border: 1px solid #2185D0 !important;
}

.neutral-pink {
    background-color: rgba(170,102,191, 0.25) !important;
}

.list-sp {
    border-left: 5px solid #2185D0 !important;
}

.bcollapse {
    border-collapse: collapse !important;
}

.white-font {
    color: #fff !important;
}

.mg0 {
    margin: 0 !important;
}

.mg-t-05 {
    margin-top: 0.5em !important;
}

.mg-t-1 {
    margin-top: 1em !important;
}

.mg-t-2 {
    margin-top: 2em !important;
}

.mg-b-0 {
    margin-bottom: 0 !important;
}

.mg-b-1 {
    margin-bottom: 1em !important;
}

.mg-b-2 {
    margin-bottom: 2em !important;
}

.mg-b-4 {
    margin-bottom: 4em !important;
}

.mg-l-1 {
    margin-left: 1em !important;
}

.mg-l-05 {
    margin-left: 0.5em !important;
}

.padd-tb-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.padd-1 {
    padding: 1em !important;
}

.padd-l-2 {
    padding-left: 2em;
}

.center {
    margin: 0 auto !important;
}

.flex-center {
    display: flex !important;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.flex-around {
    display: flex !important;
    justify-content: space-around;
    align-content: center;
    align-items: center;
}

.flex-evenly {
    display: flex !important;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
}

.flex-vert-center {
    display: flex !important;
    align-content: center;
    align-items: center;
}

.show-flex-sm {
    display: none !important;
}

.center-left-sm {
    text-align: center;
}

.txt-center {
    text-align: center !important;
}

.size-1_2 {
    font-size: 1.2em;
}

.size-13px {
    font-size: 13px !important;
}

.fixed-center {
    position: fixed;
    top: 50%;
    transform: translate(0,-50%);
}

.overflow-auto {
    overflow: auto;
}

.link-emulate {
    cursor: pointer;
    color: #2185D0;
}

.cursor-pointer {
    cursor: pointer;
}

.down-cl {
    transition: 0.1s ease-in;
}

    .down-cl:active {
        transform: scale(0.9,0.9);
    }

.btn-t-r-fix {
    position: fixed !important;
    right: 0.5em;
}

.border-top {
    border-top: 1px solid rgba(34,36,38,.1);
}

.fadeOutDown {
    animation: fadeOutDown 0.5s ease-in-out forwards;
}

.fadeInUp {
    animation: fadeInUp 1s ease-in-out forwards;
}

.slideInLeft {
    animation: slideInLeft .5s ease-in-out forwards;
}

.slideInLeftReverse {
    animation: slideInLeft .7s ease-in-out reverse forwards;
}


.td-last-right {
    border-right: 1px solid rgba(34,36,38,.1);
}

.td-last-bottom {
    border-bottom: 1px solid rgba(34,36,38,.1);
}

#nav-icon3 {
    display: block;
    width: 50px;
    height: 20px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

    #nav-icon3 span {
        display: block;
        position: absolute;
        height: 3px;
        width: 60%;
        background: #fff;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
    top: 10px;
}

#nav-icon3 span:nth-child(4) {
    top: 20px;
}

#nav-icon3.open span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.ui.left.sidebar, .ui.right.sidebar {
    width: 280px !important;
}



/**********
   Main
**********/


body {
    /*font-family: 'Open Sans', sans-serif;*/    
}

    body.custom {
        background: url(https://hdwallsource.com/img/2018/2/3d-gas-stove-wallpaper-hd-62938-64955-hd-wallpapers.jpg) center center / cover no-repeat fixed;
    }

.custom-logo {
    left: 0;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 150px 120px 0 0;
    border-color: rgba(0, 123, 255, .55) transparent transparent transparent;
    z-index: 99;
}

    .custom-logo img {
        position: relative;
        top: -9em;
        left: -13em;
    }

.pusher {
    padding: 65px 0px 63px 0px !important;
}

body.scroll {
    overflow: auto;
}

body.scroll.modal-open {
    overflow: hidden;
}

.toggle.checkbox.custom label:before {
    background: #ffffff6b !important;
}

.ui.toggle.checkbox.custom input:checked ~ label {
    color: #fff !important;
}

.panel-footer {
    background-color: #000;
    border: none;
    box-shadow: 0 10px 250px 0px #fff;
}

.hidden {
    display: none !important;
}

table tfoot .menu .pagination-container{
    margin: 0px 20px;
}

.dynamic-table-font {
   font-size: 100%; 
}

/*Details for menu*/

#object-details>.four.menu{
    width: calc(100% + 1px)!important;
}

.datepicker{
    z-index: 1500 !important;
}
/*end Details four menu*/

label{
    font-size: 15px;
}

table{
    width: 100%;
    font-size: 15px;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 7em;
}

#counters-area .panel-heading {
    overflow: hidden;
}

.address_list__index {
    max-height: 56vh;
    overflow-y: auto;
    overflow-x: hidden;
}

#main-menu-container {
    display: grid;
    z-index: 99999;
}

#menu-sm-btn {
    display: none;
}

#main-menu {
    font-size: 0.9em;
    display: inline-flex;
    float:left;
}

#status-categories {
    display: none;
    width: 100%;
    transition: 0.4s;
    z-index: 999;
}

    #status-categories.scroll {
        position: fixed; 
        top: 3.4em;
        left: 0;
    }

#target {
    display: flex;
    z-index: 99999;
    transition: 0.4s;
}

    #target.tscroll {
        position: fixed;
        left: 0;
    }

.button-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

    .button-wrapper .button {
        margin-top: 7px;
    }

#load-counters-by-month,
#load-counters-by-day {
    margin: 1em 0 0 0.5em;
}

.filter-btn {
    width: 100% !important;
}

.target-filters {
    margin-bottom: 2em;
}

.type-device-header {
    background: rgba(0,0,0,0.05);
}

    .type-device-header td {
        font-weight: bold !important;
        text-align: center !important;
    }

    .type-device-header td:before {
        display: none !important;
    }

.added-dates {
    display: none;
}

.mini-m {
    transform: translate(0,-50%) !important;
    padding: 1em !important;
}

#preloader-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 4.5em;
    background: rgb(38,38,38);
}
    #preloader-bottom > div {
        margin-left: 0;
        margin-right: 2em;
    }

    #preloader-bottom::after {
        content: '';
        position: absolute;
        left: calc(100% + 1.3em);
        top: 0;
        border: 2em solid transparent;
        border-top: 4em solid rgb(38,38,38);
        transform: translate(-50%,0);
        border-left: 0.75em solid rgb(38,38,38);
    }

    #preloader-bottom span:nth-of-type(1) {
        display: block !important;
    }

    #preloader-bottom span:nth-of-type(2) {
        display: none !important;
    }

.address_list__index button {
    font-size: 14px; width: 100%; text-align: left; margin: 1px 0px; font-weight: bold;
}

.menu-item-container {
    display: flex;
}

.menu-item-container.active .item {
    background: rgba(255,255,255,.15) !important;
    color: #fff !important;
}

.sp-active {
    background: rgba(255,255,255,.15) !important;
    color: #fff !important;
}

#print:not(a) {
    margin-top: 1em;
}

/* Start: Modal */
/*semantic .checkbox*/
.ui.checkbox {
    margin: 0px;
}
/* end semantic .checkbox*/

.pac-container {
    z-index: 9999;
}

#location-info-object #Comment {
    width: 100%;
    height: 130px;
    resize: none;
}

.flex-center-column {
    display: flex !important;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}

#corrector-details-img {
    width: 7em;
    min-width: 3em;
    margin-bottom: 1em;
}

.lastinfo-lineind {
    padding: 1em 3em;
    margin: 0;
    border: 1px solid #A333C8;
    font-weight: bolder;
}

.meter-reading-lineind {
    padding: 1em 3em;
    margin: 0;
    border: 1px solid #fbb008;
    font-weight: bolder;
}

/* End: Modal */
/* Start: Login Form */
.form-signin {
    max-width: 300px;
    padding: 15px;
    margin: 0 auto;
}

.form-signin .checkbox {
    margin-bottom: 10px;
}

.form-signin .checkbox {
    font-weight: normal;
}

.form-signin .form-control {
    position: relative;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.form-signin .form-control:focus {
    z-index: 2;
}


/* End: Login Form */

.modal-main-position {
    width: 95%;
    max-width: 1000px;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    /*display: inline-block;*/
}


/* group filters home */
.adaptive-accordion-columns-home {
   cursor: pointer;
}

body .ui.checkbox label {
    width: 20em;
    z-index: 9;
    cursor: pointer;
}

body .ui.toggle.checkbox .box:before, body .ui.toggle.checkbox label:before {
    width: 3.8rem !important;
    background: rgba(0,0,0,0.15);
}

body .ui.toggle.checkbox input ~ .box:after, body .ui.toggle.checkbox input ~ label:after {
    left: 0.2rem;
}

body .ui.toggle.checkbox input ~ .box:after, body .ui.toggle.checkbox input ~ label:after {
    left: 0.2rem;
}

.cities-list-home {
    width: 100% !important;
    margin: 1.2em !important;
}

    .cities-list-home > .dropdown > .menu {
        width: 100% !important;
        top: 100% !important;
        left: 0 !important;
    }

    .cities-list-home .dropdown .dropdown.icon:before {
        content: '\f0d7' !important;
    }

.checkbox-describe-home {
    top: -0.4em;
    left: 0.9em;
    position: relative;
}


/*            Analitics          */
.analitics .panel .panel-body {
    position: relative;
    min-height: 70px;
}


#perc_of_the_planned {
    max-width: 300px;
}

.on-lust-month-wrap .panel-body {
    font-size: 36px;
}

.on-lust-month-wrap i {
    position: absolute;
    right: 15px;
    top: 21px;
    color: darkblue;
    font-size: 40px;
}

#perc-of-each {
    width: 400px;
    height: auto;
}

.perc-of-each-wrap ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.perc-of-each-wrap li span {
    border-radius: 50%;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

/*  Analitics end*/

.loaderArea {
    background: #ffffff;
    overflow: hidden;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
}

.preloader.full-width {
    width: 100%;
    height: 120px;
    margin-left: 0px;
    margin-right: 0px;
    position: absolute;
    top: 50%;
}

.preloader {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 45%;
    position: relative;
}

.preloader-form {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 4em;
    height: 4em;
    z-index: 99999;
}

.preloader-dotline .dot {
    display: inline-block;
    background: #666;
    height: 12px;
    width: 12px;
    opacity: 0;
    border-radius: 50%;
    animation: dotline-move 4s infinite;
    transform: translateX(-300px)
}

.preloader-dotline .dot:nth-child(1) {
    animation-delay: .8s;
}

.preloader-dotline .dot:nth-child(2) {
    animation-delay: .7s;
}

.preloader-dotline .dot:nth-child(3) {
    animation-delay: .6s;
}

.preloader-dotline .dot:nth-child(4) {
    animation-delay: .5s;
}

.preloader-dotline .dot:nth-child(5) {
    animation-delay: .4s;
}

.preloader-dotline .dot:nth-child(6) {
    animation-delay: .3s;
}

.preloader-dotline .dot:nth-child(7) {
    animation-delay: .2s;
}

.preloader-dotline .dot:nth-child(8) {
    animation-delay: .1s;
}



.index-details-area .segment {
    min-height: 230px !important;
}

.area__preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*object create modal*/
#add_line_btn {
    display: block;
}

#filter-by-countercorrector{
    margin: 10px;
}

.table-header-company-report td{
    padding: 3px;
}

 #counters-checkgroup label, #correctors-checkgroup label {
        cursor: pointer;
    }

#correctors-checkgroup .field,
#counters-checkgroup .field{
    margin-top: 1em;
}

.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #3399FF;
}

.autocomplete-group {
    padding: 2px 5px;
}

    .autocomplete-group strong {
        display: block;
        border-bottom: 1px solid #000;
    }


#data-counters{
    min-height: 100px;
}

#btn-actions-container {
    flex-wrap: wrap;
}

    #btn-actions-container input,
    #btn-actions-container button {
        margin-top: 0.2em
    }

#register_modal_succeed {
    margin-top: 1.2em !important;
    font-size: 1em;
}


/*side-settings*/
/****************/

.settings-bl-btn {
    width: 3em;
    height: 3em;
    background: rgb(38,38,38);
    position: fixed;
    top: 50%;
    right: 0;
    border-radius: 1em 0 0 1em;
    z-index: 9999;
    cursor: pointer;
}

    .settings-bl-btn i {
        margin: 0 !important;
        line-height: 1em;
        font-size: 1.7em !important;
        color: #fff;
        transition: 0.3s;
    }

.side-settings {
    display: none;
    height: auto;
    min-width: 22em;
    padding: 1.5em 4em 1.5em 1.5em !important;
    position: fixed !important;
    top: 50% !important;
    right: 0 !important;
    background: rgb(38,38,38);
    z-index: 999;
    color: #fff !important;
}

    .side-settings span{
        color: #fff !important;
    }


/*Instructions*/
/****************/
.instr-img {
    margin: 0 auto !important;
    max-width: 65em !important;
    padding: 2em;
}


/*Login, WaitingVerif*/
/****************/
#login-container {
    margin-top: 100px;
    color: #fff;
    background-color: rgba(0,0,0, .8);
    padding: 3em 2em;
    border-radius: 1em;
}

    #login-container h2 {
        text-shadow: 0 0 35px;
    }

hr.custom {
    box-shadow: 0 0 2px 1px #fff;
    border: none;
}

.back-verif {
    background: url('../images/material_design/material-1.png') no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.confirm-btn:hover {
    color: #fff !important;
}

    .confirm-btn:hover .icon {
        opacity: .85 !important;
    }


/*Profile*/
/****************/
.profile-bar {
    position: absolute;
    left: 0;
    bottom: -1em;
}



/*Media queries*/
/****************/
@media only screen and (max-width: 1200px) {
    .side-links {
        display: none !important;
    }

    .size-1_2 {
        font-size: 1em;
    }

    .ui.selection.dropdown #address-option {
        max-height: 22rem;
    }

    .dynamic-table-font {
        font-size: 79% !important;
    }
}

@media only screen and (max-width: 1180px) and (min-width: 768px) {
    #passport-details {
        flex-wrap: wrap !important;
    }

        #passport-details > .column {
            width: 50%;
        }

    #main-menu {
        font-size: 0.77em;
    }

    #target .item {
        font-size: 0.9em;
    }

    #preloader-bottom > span {
        font-size: 0.8em !important;
    }

    #filters-container-main {
        width: 100% !important;
    }

    #adaptive-accordion-home {
        font-size: 1.3em;
    }

    #address-option .item.search-field {
        font-size: 0.9em !important;
    }

    #addresslist-dropdown {
        font-size: 1.1em !important;
    }

    #adaptive-accordion-home .cities-list-home {
        font-size: 0.9em;
    }

    #adaptive-accordion-home .content {
        margin-top: 1em;
    }

    #show-all-filters, #confirm-filters {
        padding: 1em 1em;
    }

    #adaptive-accordion-home .ui.fitted.toggle.checkbox {
        width: 4.5rem;
        font-size: 10em;
    }

    #adaptive-accordion-home .ui.toggle.checkbox .box:before, #adaptive-accordion-home .ui.toggle.checkbox label:before {
        width: 4.4rem !important;
    }

    #adaptive-accordion-home .ui.toggle.checkbox .box:after, #adaptive-accordion-home .ui.toggle.checkbox label:after {
        width: 2rem;
        height: 2rem;
    }

    #adaptive-accordion-home .ui.toggle.checkbox .box:before, #adaptive-accordion-home .ui.toggle.checkbox label:before {
        height: 2rem;
    }

    #objdetails-home {
        width: 100% !important;
    }

    #analytics-main {
        width: 100% !important;
    }

    .sm-font-09 {
        font-size: 0.9em !important;
    }
}

@media only screen and (max-width: 1024px) {
    #main-menu {
        font-size: 1.1em;
        display: block;
        width: 100%;
        overflow-y: auto !important;
        padding-bottom: 5em !important;
    }

        #main-menu .item {
            padding: 1.5em 1.1em !important;
        }

        .dropdown .menu {
            left: 0 !important;
            right: 0 !important;
            top: 100% !important;
        }

    .ui.dropdown > .dropdown.icon:before {
        content: '\f0d7' !important;
    }

    #menu-sm-btn {
        display: block;
    }

    #side-menu {
        top: 3.4em;
    }

    .visible-page {
        display: block !important;
        position: absolute !important;
        font-size: 1.1em;
        top: 0.1em;
        right: 10px;
    }

    .pagination-container > .pagination,
    #report-by-month, #submit-form{
        font-size: 1.3em !important;
    }

    .dropdown .menu .item {
        padding: 1.3em 1em !important;
    }
}                                                 


@media only screen and (max-width: 1024px) and (min-width: 768px) {
    #side-menu {
        width: 45% !important;
    }

    #main-menu {
        font-size: 1.2em;
    } 
    
    #main-menu > .right.menu div,
    #main-menu > .right.menu a {
        display: inline-block;
    }

    .size-092 {
        font-size: 0.92em !important;
    }

    .size-084 {
        font-size: 0.84em !important;
    }

    input:not(.button):not(.sp-input), select,
    .form-control,
    .dropdown.selection {
        padding: 1.1em !important;
    }
}

@media only screen and (max-width: 799px) and (min-width: 768px) {
    .users-info-table {
        font-size: 0.92em !important;
    }

    .size-075 {
        font-size: 0.75em !important;
    }
}

@media only screen and (max-width: 768px) {
    #main-menu-container {
        display: block;
    }

    #main-menu {
        display: block;
        float: none;
    }

        #main-menu .item {
            padding: 1.1em !important;
        }

        #main-menu .right {
            display: flex;
            align-items: center;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 1em;
        }


    .menu-item-container > a{
        width: 100%;
    }

    .ui.vertical.menu .menu-item-container .item:first-child:before {
        display: block !important;
    }

    #target {
        display: none;
        background: rgba(255,255,255,0.95);
        top: 6em;
    }

        #target .item {
            border: none;
        }

            #target .item:active {
                background-color: rgba(33,133,208,.1);
            }

    .ui.selection.dropdown .menu {
        max-height: 22rem !important;
    }

    @media (min-width: 480px) {
        .rwd-table td:before {
            display: none;
        }
    }

    @media (min-width: 480px) {
        .rwd-table th, .rwd-table td {
            display: table-cell;
            padding: .25em .5em;
        }

            .rwd-table th:first-child, .rwd-table td:first-child {
                padding-left: 0;
            }

            .rwd-table th:last-child, .rwd-table td:last-child {
                padding-right: 0;
            }
    }

   

    @media (min-width: 480px) {
        .rwd-table th, .rwd-table td {
            padding: 1em !important;
        }
    }

    .center-left-sm {
        text-align: left;
    }
}


@media only screen and (max-width: 767px) {
    .dynamic-table-font {
        font-size: 100% !important;
    }

    .address_list__index {
        height: 300px;
    }

    .rwd-table {
        margin: 1em 0;
        overflow: hidden;
    }

        .rwd-table th, .rwd-table td {
            margin: .5em 1em;
            text-align: left;
        }

        .rwd-table th,
        .rwd-table thead {
            display: none !important;
        }

        .rwd-table td {
            display: block;
        }

            .rwd-table td:first-child {
                padding-top: .5em;
            }

            .rwd-table td:last-child {
                padding-bottom: .5em;
            }

            .rwd-table td:before {
                content: attr(data-th) ": ";
                font-weight: bold;
                width: 50%;
                display: inline-block;
            }

        .rwd-table .adminpanel:before {
            width: 100% !important;
        }

    #status-categories {
        display: block;
    }

    .container-btn-added-dates {
        text-align: left !important;
    }

    .flex-center {
        display: block;
    }

    #preloader-bottom span:nth-of-type(1) {
        display: none !important;
    }

    #preloader-bottom span:nth-of-type(2) {
        display: block !important;
    }

    .show-flex-sm {
        display: flex !important;
        justify-content: space-around;
        align-items: center;
        margin-top: 0.5em;
        background: #F8FCFC;
        height: 3.2em
    }
}

@media screen and (max-width: 550px) {
    #login-container {
        margin-top: 40px;
    }

    .rwd-table td:before {
        width: 100%;
    }

    .type-device-header {
        height: auto;
    }
}

@media screen and (max-width: 350px) {
    #login-container {
        padding: 3em .5em;
    }
}