* {
    box-sizing: border-box;
}

body {
    width: 1160px;
    height: auto;
    background-color: blue;
    margin: auto;
    font-family: sans-serif;
}

.edit-schedule {
    width: 1160px;
    height: auto;
    padding: 1%;
    background-color: white;
    text-align: center;
}

.input-date {
    height: auto;
    text-align: center;
}

.grid {
    padding-top: 10px;
    padding-bottom: 5px;
    -webkit-column-count: auto;
    -moz-column-count: auto;
    column-count: auto;
    -webkit-column-width: 376px;
    -moz-column-width: 376px;
    column-width: 376px;
}

.grid-item {
    display: flex;
    height: 45px;
    justify-content: center;
    margin-bottom: 10px;
    page-break-inside: avoid;
    break-inside: avoid;
    width: 100%;
}

.icon {
    background-color: white;
    margin-right: 5px;
    width: 45px;
}

.title {
    background-color: white;
    margin-right: 1%;
    display: flex;
    align-items: center;
    width: 155px;
    position: relative;
}

.text {
    font-size: 27px;
    color: white;
    font-weight: bold;
}

.text-red-white-shadow {
    color: #f70000 !important;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.info {
    border: 1px solid white;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error {
    margin-top: 60px;
    background-color: white;
    height: 60px;
    display: flex;
}

.text-error {
    justify-content: center;
    margin: auto;
    font-size: 20px;
}

.logo-image {
    position: relative;
}

.logo-image img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 2px;
}
.place{
    height: 35px;
}

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #000;
    opacity: 0.5;
}

.loader {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -35px;
    margin-left: -35px;
    border-radius: 60px;
    border: 6px solid #fff;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border-left-color: transparent;
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border-left-color: transparent;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border-left-color: transparent;
    }
    50% {
        -webkit-transform: rotate(180deg);
        border-left-color: transparent;
    }
    100% {
        -webkit-transform: rotate(360deg);
        border-left-color: transparent;
    }
}
