.realty-item-title {
    font-size: 120%;
    white-space: normal;
}

main {
    /*margin-bottom: 40px;*/
}

.realty {
    margin-top: 30px;
}

.realty-price {
    font-size: 28px;
    color: var(--primary);
    text-align: center;
    border: 2px solid;
}

.realty-size {
    background: var(--primary);
    color: white;
    font-size: 28px;
    text-align: center;
}

.realty-info-section {
    background: #e5e5e5;
    padding: 10px 3px;
    margin-top: 20px;
}

.realty-info {
    padding: 7px 0px;
}

.realty-info-field {
    text-align: left;
    opacity: 0.8;
    padding: 0px 5px;
}

.realty-info-value {
    text-align: right;
}

.contact-form-section {
    text-align: center;
    margin-top: 30px;
}

.contact-card {
    border: 3px solid;
    border-color: #607d8b;
    border-radius: 15px;
    padding: 15px 0px;
    font-size: 30px;
    margin-bottom: 30px;
}

.phone-number a{
    color: black;
}

.phone-number a:hover{
    color: var(--primary);
}

.contact-form {
    color: white;
    background: var(--primary);
    text-align: left;
	margin-bottom: 30px;
}

.send-message {
    padding: 25px 10px;
}

.contact-submit {
    border-color: var(--primary);
    background-color: #ffffff;
    color: var(--primary);
}

.contact-submit:hover {
    background-color: #e5e5e5;
    color: var(--primary);
}

.realty-description-content {
    margin-top: 35px;
}

.realty-description-text {
 /*   text-align: justify;*/
    margin-top: 23px;
	margin-bottom: 30px;
}

.publish-realty {
    background-color: #ff7500;
    border-color: #ff7500;
    color: white;
    font-weight: 600;
    animation: flash infinite 1.4s;
    transition: all ease-in 300ms;
}

@keyframes flash {
    0% {
        background-color: #ff7500;
        border-color: #ff7500;
        color: white;
    }
    /*50% {
        color: #ff7500;
    }
    100% {
        color: white;
    }*/
}

.publish-realty i {
    margin-left: 8px;
}

.publish-realty:hover {
    color: white;
    animation: none;
}

.modify-realty {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.modify-realty:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.owl-thumb-item {
    display: block;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid var(--primary);

    float: left;
    width: 65px;
    height: 65px;
    margin: 0 5px 5px 0;
    cursor: pointer;
    overflow: hidden;
}

.owl-thumb-item.active {
    border: 3px solid #ff7500;
}

.owl-carousel-img {
    max-height: 455px;
    display: inline;
    width: auto !important;
    max-width: 100%;
    vertical-align: middle;
}

.owl-item {
    position: relative;
    display: table;
    height: 455px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-stage {
    background: #f5f5f5;
    height: 455px;
}

.owl-prev, .owl-next {
    top: 224px;
    position: absolute;
    z-index: 1;
    width: 38px;
    height: 38px;
    margin: 0;
    outline: none;
    cursor: pointer;
}

.owl-prev {
    left: 7px;
}

.owl-prev:focus {
    outline: 0;
}

.owl-next {
    right: 7px;
}

.owl-next:focus {
    outline: 0;
}

.owl-carousel .owl-prev:before, .owl-carousel .owl-next:before {
    font-family: "Font Awesome 5 Free" !important;
    font-style: normal !important;
    font-weight: 900;
    font-variant: normal !important;
    text-transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.owl-carousel .owl-prev:before {
    content: "\f053"
}

.owl-carousel .owl-next:before {
    content: "\f054";
}

.owl-carousel .owl-prev span, .owl-carousel .owl-next span {
    display: none;
}

@media (max-width: 960px) {
    .realty-price-and-size {
       /* margin-top: 2rem;*/
    }
}

.publish-realty-outline {
    color: var(--primary);
    text-decoration: underline !important;
}