﻿.nazarsBox {
    padding: 16px;
    background-color: var(--white);
    border-radius: 12px;
}
.noLogin {
    width: max-content;
    margin: 2px auto 16px;
    font-size: 12pt;
}
    .noLogin a {
        color: var(--darkBlue);
        font-weight: bold;
    }

.nazarsBox .title {
    width: calc(100% - 20px);
    margin: 0 auto 4px;
}
#txtText {
    resize: none;
}
.nazarListParent {
    margin-top: 16px;
    border-top: 1px solid #ddd;
}
.nazarsBox .nazarsList .nazarItem {
    display: flow-root;
    width: 100%;
    height: max-content;
    padding: 16px;
    background-color: var(--white);
}
    .nazarsBox .nazarsList .nazarItem:not(:first-child) {
        border-top: 1px solid #fff;
        margin-top: 8px;
    }

.nazarItem .nazarHeader {
    display: grid;
    grid-template-columns: 50px auto 200px;
    align-content: center;
    align-items: center;
    grid-gap: 6px;
    font-size: 13pt;
    margin-bottom: 12px;
}

.nazarItem .nazarHeader img {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 1px solid #9b9999;
}
    .nazarItem .nazarHeader span {
        text-align: left;
        font-size: 11pt;
    }
.nazarItem .nazarBody .nazarTitle {
    display: block;
    font-size: 12pt;
    font-weight: bold;
    margin-bottom: 8px;
    color: #313131;
}
.nazarItem .nazarBody .description {
    display: block;
    font-size: 11pt;
    color: #737373;
    text-align: justify;
}
.nazarToolBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 8px 0 0;
}
.nazarsBox .rate {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: left;
    grid-gap: 2px;
}
    .nazarsBox .rate span.stare {
        display: block;
        width: 17px;
        height: 17px;
        background-image: url(../Icons/whiteStarIcon.svg);
        background-repeat: no-repeat;
        background-size: cover;
    }
        .nazarsBox .rate span.stare.yellow {
            background-image: url("../Icons/yellowStarIcon.svg");
        }

.nazarsBox .nazarForm .rate {   
    justify-content: right;
    height: 35px;
}
    .nazarsBox .nazarForm .rate span.stare {
        width: 25px;
        height: 25px;
    }
    
@media screen and (max-width: 1270px) {
    .nazarsBox .nazarHeader {
        grid-template-columns: 50px auto;
    }
}


/*------------- Form Element --------------*/
form .column {
    margin-bottom: 16px;
    position: relative;
}

.column {
    display: inline-block;
    position: relative;
    vertical-align: top;
    box-sizing: border-box;
    margin: 8px;
    position: relative;
}
.w20 {
    width: calc(20% - 20px);
}
.w33 {
    width: calc(33% - 20px);
}
.w30 {
    width: calc(30% - 20px);
}
.w40 {
    width: calc(40% - 20px);
}
.w50 {
    width: calc(50% - 20px);
}
.w60 {
    width: calc(60% - 20px);
}
.w66 {
    width: calc(66% - 20px);
}
.w100 {
    width: calc(100% - 20px);
}


.label {
    display: flex;
    width: 100%;
    color: #313131;
    margin-bottom: 8px;
    font-size: 11pt;
    padding-right: 8px;
    box-sizing: border-box;
}

.input, .textarea {
    display: block;
    width: 100%;
    border: 1px solid #cdd1d4;
    border-radius: var(--radius);
    color: #313131;
    outline: none;
    transition: var(--transition);
    background-color: #fff;
    padding: 8px 15px;
    font-size: 11pt;
    margin-bottom: 10px;
}
    .input::placeholder {
        color: #cac9c9;
    }

.telephone, .postCode, .nationalCode, .mobile, .price, .number {
    text-align: left;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 36px;
    float: left;
    background-color: var(--darkBlue);
    padding: 8px 14px;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    box-shadow: 0px 2px 12px -3px rgb(0 0 0 / 22%);
    font-size: 12pt;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 0;
    text-decoration: none;
    margin: 0 2px;
    transition: var(--transition);
}