/* ===========================================
   MAIN LAYOUT
   =========================================== */

/* Left column: comments */
.comments-left {
    background-color: #F2F3F7;
    padding: 20px;
}

/* Right column: optional poll area */
.vote-right {
    background-color: #12C4EB;
    padding: 20px;
}

/* Bootstrap-like columns fallback */
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* Section title */
.comments-left h4 {
    padding: 20px 0;
    color: #344555;
    font-weight: 600;
}
.full-bleed {
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
}
.comments-section{
    display:flex;
}
.comments-left {
    background-color: rgb(242, 243, 247);
}
.col-md-6.vote-right {
    width: 100%;
    background-color: rgb(18, 196, 235);
}
/* ===========================================
   INDIVIDUAL COMMENT BLOCK
   =========================================== */

.cust-comment {
    padding: 0;
    margin-bottom: 22px;
    border-radius: 4px;
    overflow: hidden;
}

/* UL containing time, date, location */
.cust-comment .location-date {
    margin: 0;
    padding: 0;
}

.cust-comment .location-date li {
    display: flex;
    flex-direction: row;
    width: 100%;
    list-style: none;
}

/* TIME */
.cust-comment .comment-time {
    background-color: #344555;
    color: #FFFFFF;
    width: 20%;
    display: inline-block;
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

/* DATE */
.cust-comment .comment-date {
    background-color: #00DCAB;
    color: #FFFFFF;
    width: 30%;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    margin-left: -4px;
}

/* LOCATION */
.cust-comment .comment-location {
    background-color: #00DCAB;
    color: #FFFFFF;
    width: 50%;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    margin-left: -4px;
}

/* Shared padding */
.cust-comment .location-date li span {
    display: inline-block;
}

/* NAME + COMMENT TEXT */
.cust-comment .commenter-name {
    padding: 10px 10px 20px 0;
}

.cust-comment .commenter-name h5 {
    margin: 15px 0 5px;
    padding-left: 10px;
    color: #344555;
    font-size: 18px;
    font-weight: 600;
}

.cust-comment .commenter-name p {
    font-size: 14px;
    border-left: solid 5px #12C4EB;
    padding: 10px;
    color: #696969;
    margin: 0;
    line-height: 1.6;
}

/* ===========================================
   BUTTON AREA (Share + Show All)
   =========================================== */

.cust-comment .buttons {
    margin-top: 25px;
}

.cust-comment .buttons .btn {
    width: 100%;
    background-color: #344555;
    border-color: #344555;
    font-size: 16px;
    padding: 10px 15px;
}

.cust-comment .buttons .btn:hover {
    background-color: #2b3847;
    border-color: #2b3847;
}

/* ===========================================
   MODAL (EVEN IF COMMENTED OUT)
   =========================================== */

.modal.show {
    display: block;
}

.fade {
    transition: opacity 0.15s linear;
}
.modal {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0px;
    border-radius: 0px;
    align-content: center;
    background-color: rgba(50, 50, 50, 0.7);
}
.modal-open{
overflow: hidden;
}
/*.modal-open{*/
/*overflow-x: hidden;*/
/*overflow-y: auto;*/
/*}*/

zoomInUp animation {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0px, 0px, 0px);
}
.modal.show .modal-dialog {
    transform: none;
}
.modal.fade .modal-dialog {
    transform: translate(0px, -50px);
    transition: transform 0.3s ease-out;
}
.modal.show .modal-dialog {
    margin: 3.75rem auto;
}
@media (min-width: 961px) {
    .modal .modal-dialog, .modal .modal-content {
        min-width: 850px;
    }
}
.zoomInUp {
    animation-name: zoomInUp;
}
.animated {
    animation-duration: calc(1s);
    animation-fill-mode: both;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}
.modal-dialog {
    position: relative;
    width: auto;
    pointer-events: none;
    margin: 0.5rem;
}
.fadeOutDown {
    animation-name: fadeOutDown;
}
@keyframes fadeOutDown{
0% {
    opacity: 1;
    transform: translateY(0px);
}
100% {
    opacity: 0;
    transform: translateY(20px);
}
}
 .modal .modal-dialog .modal-content {
    border-radius: 0px;
}
.modal .modal-dialog .modal-content {
    border-radius: 0px !important;
}
.modal .modal-dialog .modal-content {
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
}
@media (min-width: 961px) {
    .modal .modal-dialog, .modal .modal-content {
        min-width: 850px;
    }
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.2);
    border-image: initial;
    border-radius: 0.3rem;
    outline: 0px;
}
.modal .modal-dialog .modal-content .modal-header {
    background-color: rgb(52, 69, 85);
    color: rgb(255, 255, 255);
    padding: 10px 15px;
    border-radius: 0px;
}
.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    padding: 1rem;
    border-bottom: 1px solid rgb(222, 226, 230);
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal .modal-dialog .modal-content .modal-header h5 {
    vertical-align: middle;
    position: relative;
    top: 0px;
    margin: 0px;
}
.modal-title {
    margin-bottom: 0px;
    line-height: 1.5;
}
.modal-title {
    background-color: rgb(18, 196, 235);
    background-image: linear-gradient(to right, rgb(0, 220, 171), rgb(18, 196, 235));
    background-repeat: repeat-x;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    padding: 10px;
}
#commenterModal .modal-header .close {
    padding: 1rem 0.5rem;
    align-items: center;
    display: flex;
}
.modal .modal-dialog .modal-content .modal-header a {
    background-color: rgb(18, 196, 235);
    opacity: 1;
    color: rgb(255, 255, 255);
    height: 20px;
    line-height: 0;
    margin: 0px;
    font-size:10px;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
a:visited {
    color: #663399;
    text-decoration: none;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgb(0, 0, 0);
    text-shadow: rgb(255, 255, 255) 0px 1px 0px;
    opacity: 0.5;
}
.modal .form {
    margin: 10px 0px 50px;
}

.buttons .row {
    display: flex;
    gap: 10px;
}
.btn.btn-primary {
    text-align: center;
    border: none;
    border-radius: 0;
    padding: 6.6666666667px 40px;
    -webkit-transition: ease-in-out 0.4s background-color;
    -moz-transition: ease-in-out 0.4s background-color;
    -ms-transition: ease-in-out 0.4s background-color;
    -o-transition: ease-in-out 0.4s background-color;
    transition: ease-in-out 0.4s background-color;
    display: block;
    margin: 5px 0;
    color: #FFFFFF ;
    background-color: #12C4EB ;
    cursor:pointer;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 2px + 0.75rem);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgb(73, 80, 87);
    background-color: rgb(255, 255, 255);
    background-clip: padding-box;
    padding: 0.375rem 0.75rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(206, 212, 218);
    border-image: initial;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/* ===========================================
   RESPONSIVENESS
   =========================================== */

@media (max-width: 767px) {
    .cust-comment .comment-time,
    .cust-comment .comment-date,
    .cust-comment .comment-location {
        width: 100% !important;
        margin-left: 0 !important;
        text-align: left;
    }

    .cust-comment .location-date li {
        flex-direction: column;
    }
}