.conf-data-item {
    display: inline-block;
    height: 150px;
    padding: 10px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
    list-style: none;
    transition: box-shadow .5s;
}

.conf-data-item.conf-data-item-add {
    cursor: pointer;
}

.conf-data-item.conf-data-item-add:hover {
    box-shadow: 0 0 5px 0 #7d7d7d;
}

.configurator .alert {
    display: block;
    opacity: 1;
    margin-top: 10px;
    margin-bottom: 0;
    visibility: hidden;
}

.configurator .alert.admin-alert {
    visibility: visible;
}

.configurator .alert.active {
    opacity: 0;
    animation: hideAlert 5s;
    visibility: hidden;
}

@keyframes hideAlert {
    0%   {opacity: 1;visibility: visible}
    40%  {opacity: 1;visibility: visible}
    80%  {opacity: 1;visibility: visible}
    100% {opacity: 0; visibility: hidden;}
}

.configurator-item {
    margin: 40px 0;
}

.configurator-item .configurator-item-title {
    padding-bottom: 20px;
}

.conf-data-item-image {
    height: 100%;
}

.conf-item-title {
    padding: 10px;
}

.conf-data-item-delete {
    position: absolute;
    top: 70px;
    right: 10px;
    opacity: .7;
    z-index: 2;
    cursor: pointer;
}

.conf-data-item-delete:hover {
    opacity: 1;
}

.conf-data-item.conf-data-item-add .fa {
    font-size: 80px;
    opacity: .7;
    transition: opacity .5s;
    color: #00084d;
}

.conf-data-item.conf-data-item-add:hover .fa {
    opacity: 1;
}

.conf-plus-container {
    padding-bottom: 10px;
    height: 100px;
    max-width: 200px;
    position: relative;
    margin: auto;
}

.conf-plus-container img {
    height: 100px;
}

.conf-modal-item {
    position: relative;
    list-style: none;
    margin-bottom: 50px;
}

.conf-modal-item-wrapper {
    min-height: 190px;
    max-height: 190px;
    transition: max-height .6s;
    overflow: hidden;
}

.conf-modal-item-wrapper.open {
    max-height: 1000px;
}

.conf-modal-item-wrapper.open + .conf-read-more .fa-chevron-down,
.conf-modal-item-wrapper + .conf-read-more .fa-chevron-up {
    display: none;
}

.conf-modal-item-wrapper + .conf-read-more .fa-chevron-down,
.conf-modal-item-wrapper.open + .conf-read-more .fa-chevron-up {
    display: inline-block;
}


.conf-modal-item-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 100px;
}

.conf-description-ellipsis:after {
    content: "";
    text-align: right;
    position: absolute;
    top: 110px;
    right: 0;
    width: 70%;
    height: 1.2em;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);
}

.conf-modal-item-label {
    cursor: pointer;
}

.conf-modal-item-title {
    position: relative;
    padding: 20px 10px 20px 40px;
}

.conf-modal-item-title .conf-checkbox {
    position: absolute;
    left: 0;
    top: 20px;
    height: 20px;
    width: 20px;
}

.conf-modal-list {
    padding: 15px;
}

.conf-modal-item-content {
    position: relative;
    padding: 0 10px 10px 160px;
}

.conf-read-more {
    position: absolute;
    color: #000;
    bottom: -25px;
    font-size: 14px;
    right: 10px;
}

.conf-read-more:focus,
.conf-read-more:hover {
    color: #000;
}

.blog-details-comment-form {
    margin-bottom: 90px;
}

.blog-details-comment-form h4 {
    color: #111;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.blog-details-comment-form input {
    font-size: 15px;
    color: #b7b7b7;
    width: 100%;
    height: 50px;
    border: 1px solid rgba(0,0,0,.1);
    padding-left: 20px;
    margin-bottom: 30px;
}

.blog-details-comment-form textarea {
    font-size: 15px;
    color: #b7b7b7;
    width: 100%;
    height: 130px;
    border: 1px solid rgba(0,0,0,.1);
    padding-left: 20px;
    padding-top: 12px;
    resize: none;
    margin-bottom: 24px;
}

/*----------------------------------*/
/*-------------- Modal -------------*/
/*----------------------------------*/

.modal-dialog.conf-modal {
    max-width: 900px;
    height: 80vh;
    margin-top: 10vh;
}

.conf-modal .modal-content {
    height: 100%;
}

.conf-modal .modal-body {
    overflow: auto;
}

.close-btn:before, .close-btn:after {
    background-color: #000;
}

.conf-modal .btn-primary {
    background: #00084d;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    border: 1px solid #00084d;
}

.input-error {
    border-color: red !important;
}

.input-error::placeholder {
    color: red !important;
}

.input-error form textarea::-webkit-input-placeholder {
    color: red !important;
}

.input-error form textarea::-moz-placeholder {
    color: red !important;
}

.input-error form textarea:-ms-input-placeholder {
    color: red !important;
}

.input-error form textarea::-ms-input-placeholder {
    color: red !important;
}

@media only screen and (max-width: 500px) {
    .conf-modal-item {
        margin-bottom: 30px;
    }

    .conf-modal-item-wrapper {
        max-height: 300px;
    }

    .conf-modal-item-content {
        padding: 10px;
    }

    .conf-modal-item-img {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
    }
}

