* {
    font-family: "Kanit", sans-serif;
    font-weight: 200;
}

@media only screen and (max-width: 991px) {
    .roi-item-label-hide-1 {
        display: none;
    }

    .roi-item {
        margin-bottom: 15px;
    }

    .roi-subitem-label-hide {
        display: inline-block !important;
    }
}
@media only screen and (max-width: 768px) {
    footer span {
        text-align: left;
        display: flex;
    }
}

nav {
    background-color: #1c3d6f !important;
}
nav a {
    padding-top: 10px;
    color: #ffffff;
    text-decoration: none;
    transition-duration: 0.5s;
}
nav a:hover {
    color: rgba(255, 255, 255, .5);
}
.wolf-brand {
    padding: 15px 0;
}

.wolf-brand img {
    width: auto;
    height: 60px;
}

.bg-darkblue {
    background-color: #1c3d6f;

}
footer {
    background-color: #1c3d6f !important;
}
footer h2 {
    color: #ffffff;
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
}
footer p {
    color: #ffffff;
    font-weight: 400;
    font-size: 0.8rem;
}
footer span {
    color: #ffffff;
    font-weight: 400;
    padding-left: 10px;
    font-size: 0.8rem;
}
footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
}
footer hr {
    color: #ffffff;

}

.wrap {
    margin: 70px 0;
    width: 100%;
    display: inline-block;
}

.wolf-roi {
    margin: 0 auto;
}

    .wolf-roi h1 {
        color: #1c69be;
        font-family: "Kanit", sans-serif;
        font-weight: 300;
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .wolf-roi h4 {
        color: #1c69be;
        font-weight: 200;
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }

.roi-item {
    /*margin-bottom: 5px;*/
}

    .roi-item label {
        font-size: 1rem;
    }

.roi-item-input {
    border-color: lightseagreen;
}

.roi-item-font {
    font-size: 1.2rem;
}

.roi-item-label-hide-1 {
    visibility: hidden;
}

.roi-item-label-hide {
    display: none;
}

.roi-subitem-label-hide {
    display: none;
}

.roi-item-group {
    margin-bottom: 5px !important;
}

.roi-card {
    border-radius: 10px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, .1);
}

.roi-input-money {
    text-align: right;
}

.roi-result {
    color: lightseagreen;
    font-size: 1.2rem;
}

.text-guide {
    position: relative;
    /*display: inline-block;*/
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.span-text-guide {
    visibility: hidden;
    font-size: 0.8rem;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
}

.text-guide:hover .span-text-guide {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.text-guide .span-text-guide::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}