* {
    box-sizing: border-box;
}

*:before, *:after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    position: relative;
}

.main-container {
    min-height: 100vh;
    /* will cover the 100% of viewport */
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 100px;
    /* height of your footer */
}

footer {
    font-size: 0.9rem;
    color: gray;
    font-family: 'Dosis', sans-serif;
    width: 100%;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.star-rating input[type=radio] {
    display: none;
}

.star-rating label {
    color: #bbb;
    font-size: 13px;
    padding: 0;
    transition: all .3s ease-in-out
}

.engraved {
    text-shadow: -1px -1px 1px #fff, 1px 1px 1px #ddd;
}

.ace_editor {   
    height:220px;
    width: 100%;
}

.scrollmargin {
    height: 80px;
    text-align: center;
}

/* .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
    background: #FFF;
    color: #000;
    border-color: #999;
  } */