﻿.content__tiles .tile-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.content__tiles .tile-grid__item {
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
}

.content__tiles .col-10.offset-1 {
    margin-left: unset;
    flex: unset;
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
}

.content__tiles .tile-grid__item .tile {
    max-width: unset;
}

.content__tiles .form-group label {
    line-height: 1;
    margin-top: 2px;
}

.content__tiles .form-group input[type=text] {
    height: auto;
}

.content__tiles .admin-buttons {
    position: absolute;
    top: 5px;
    right: 42px;
    z-index: 3;
}

.image-content-tile .admin-buttons a {
    padding: 15px;
}

.tile-grid__item.tile-grid__item--plus {
    display: flex;
}

.tile-grid__item.tile-grid__item--plus a {
    font-size: 30px;
    background-color: #efefef;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
}

.tile-grid__item--inactive::after {
    content: ' ';
    position: absolute;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cw-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.8);
}

.cw-modal.show {
    display: block;
}

.cw-modal-content {
    color: #051219;
    background-color: #FBFBFB;
    position: relative;
    margin: auto;
    padding: 20px;
    margin: 16px auto;
    width: calc(100% - 32px);
}

@media screen and (min-width: 768px) {
    .cw-modal-content {
        margin: 100px auto;
        padding: 50px;
        width: 90%;
    }
}

@media screen and (min-width: 992px) {
    .cw-modal-content {
        width: 80%;
    }
}

@media screen and (min-width: 1200px) {
    .cw-modal-content {
        width: 75%;
    }
}

@media screen and (min-width: 1400px) {
    .cw-modal-content {
        width: 60%;
    }
}

@media screen and (min-width: 1920px) {
    .cw-modal-content {
        width: 45%;
    }
}

.cw-modal-content p {
    line-height: 24px;
    font-weight: inherit;
}

.cw-modal-content h5 {
    margin-bottom: 12px;
    color: #051219;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .cw-modal-content h5 {
        font-size: 30px;
    }

}

.cw-modal-content--row {
    display: flex;
    flex-direction: column;
}

.cw-modal-content--left {
    margin-bottom: 16px;
    border-bottom: 1px solid #00E6A1;
    padding-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .cw-modal-content--left {
        display: flex;
        min-width: 380px;
        margin-right: 16px;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
}

.cw-modal-content--left .tile__image {
    height: 245px;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .cw-modal-content--left .tile__image {
        margin-right: 24px;
        width: 400px;
    }

    .cw-modal__info {
        width: calc(100% - 400px);
    }
}

.close {
    color: #fff;
    position: absolute;
    right: 0px;
    top: 0;
    background-color: #00E6A1;
    width: 40px;
    height: 40px;
    padding: 6px 12px;
    opacity: 1;
    font-size: 28px;
    z-index: 1;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}