﻿* {
    box-sizing: border-box;
}

body{
    background-color: white !important;
}

#intro{
    max-width: 80%;
    margin:auto;
}

#txtSearchBlogs {
    width: 100%;
    border: solid 1px #cecece;
    padding: 16px;
    padding-left: 80px;
    font-size: 22pt;
    margin-bottom: 15px;
    background-image: url('../../images/search-grey.png');
    background-position-x: 15px;
    background-position-y: 5px;
    background-size: 60px;
    background-repeat: no-repeat;
} 
#divResultsLabel {
    height: 30px;
}

#lblBlogResults {
    height: 50px;
}

#imgGetInTouch{
    margin-top: 20px;
    max-width: 225px;
    margin-bottom: 10px;
}

#divBlogs{
    border: dashed 1px #cecece;
}

.no-margin-top {
    margin-top: 0px !important;
}

.card {
    border: solid 1px #cecece;
    margin: 1%;
    width: 31%;
    float: left;
    cursor: pointer; 
}
    .card:hover {
        background-color: #fdfdfd;
    }

.card-body {
    cursor: pointer;
    padding: 20px;
}

    .card-body label {
        cursor: pointer;
        margin: 10px 0px 0px 0px;
    }

.card-title {
    padding: 10px;
    font-weight: bold;
    font-size: 15pt;
    background-color: #f5f5f5;
}

.btn-blog {
    margin-top: 20px;
    width: 100%;
    display: block;
}
 

#intro {
    margin-top: 68px !important;
}
 

footer {
    background: #1d1d1d;
    padding-top: 10px;
}

.modalWrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    text-align: center;
    background-color: #333333d9;
    z-index: 9999;
}

.modalMain {
    max-width: 400px;
    max-height: 70vh;
    overflow: auto;
    margin: auto;
    background-color: white;
    padding: 40px;
    position: relative;
    top: 15%;
}

.modalClose {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 27pt;
    color: #333333;
}

#confirmFormModalText {
    font-size: 15pt;
    color: #333333;
    text-align: center;
}

#dialContainer {
    text-align: center;
    width: 250px;
    height: 250px;
    position: relative;
    margin: auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#dial {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 50px;
    left: 50px;
    cursor: not-allowed;
    background-image: url('../../images/form/dial.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#horizontalSlider {
    width: 160px;
    cursor: grabbing;
}


.blog-item {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    cursor: pointer;
}

    .blog-item:hover {
        border: solid 1px #cecece;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
 

@media screen and (max-width: 800px) {
     .card {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .blog-item {
        margin-bottom: 30px;
    }

    #intro {
        margin-top: 62px;
    }
}
