:root{
    --blog-featured-bg: #f1f1f1;
}

html {
    scroll-behavior: smooth;
}

fieldset {
    margin : 20px 0;
}

.noTextSelect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    user-select: none; /* currently supported by Chrome, Edge, Opera and Firefox */
}


/* snap */

@media (min-width: 768px) {
    html {
        scroll-snap-type: y proximity;
    }

    .snap  {
        scroll-snap-align: start;
    }
}


/* twbs5 */
.card-group {
    margin-top: 0;
    margin-bottom: 1rem;
}


.form-select[readonly],
.form-control[readonly] {
    background: repeating-linear-gradient(45deg, transparent, transparent 5px, #eee 5px, #eee 10px);
}


/* jumbotron */
/* twbs5 doesn't have jumbotron */

.jumbotron {
    padding: 2rem 1rem;
    color: gray;
    background: whitesmoke;
}



/* image size control with wrapper */

.front-frame-img {
    height: 250px;
    width: 100%;
    background-color: var(--blog-featured-bg);
    display: flex;
    justify-content: center;
}

.front-frame-img img{
    max-height: 100%;
    max-width: 100%;
    margin: auto;
}


/* simple - datatable */

.dataTable-container {
    border-bottom: none !important;
}


/* step tool-tip */

[data-title] {
    position: relative;
}

[data-title]:hover:not(.active)::before {
    left: 0px;
    bottom: 27px;
    color: #fff;
    display: inline-block;
    position: absolute;
    content: attr(data-title);
    padding: 3px 6px;
    border-radius: 2px;
    background: #000;
    font-size: 15px;
    white-space: nowrap;
}

[data-title]:hover:not(.active)::after {
    left: 0;
    color: #fff;
    border: 8px solid transparent;
    bottom: 12px;
    content: '';
    display: inline-block;
    position: absolute;
    border-bottom: 8px solid #000;
    transform: rotate(180deg);
}


/* awesomplete */

div.awesomplete {
    width: 100%;
}

div.awesomplete mark{
    background-color:transparent !important;
    padding:0;
    margin:0;
}
