html, body {
    background-color: #fff;
    /* background-image: url("/asset/top/top.png");
    background-repeat: no-repeat;
    background-size: 250px auto;
    background-position: bottom -5px left -5px; */
    color: #636b6f;
    font-family: 'Nunito', sans-serif;
    font-weight: 200;
    height: 100vh;
    margin: 0;
}

.border_radius {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.border_radius_img {
    border-top-left-radius: 6px;
    -webkit-border-top-left-radius: 6px;
    -moz-border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    -webkit-border-top-right-radius: 6px;
    -moz-border-top-right-radius: 6px;
}

.movie_link {
    border: solid 3px #6091d3;
    
}

.movie_link:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
}

.btn-flat-border {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #67c5ff;
    border: solid 2px #67c5ff;
    border-radius: 3px;
    transition: .4s;
}

.btn-flat-border:hover {
    background: #67c5ff;
    color: white;
}

.btn-border-bottom {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.15em 0;
    text-decoration: none;
    color: #67c5ff;  
}
.btn-border-bottom:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    top:90%;
    left: 0;
    border-radius: 3px;
    background:#67c5ff;
    transition: .2s;
}
.btn-border-bottom:hover:before {
    top: -webkit-calc(90% - 3px);
    top: calc(90% - 3px);
}