/* Created by Josué */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;1,300;1,400&display=swap');
*{
    font-family: 'Roboto', sans-serif
}
.mt-10{
    margin-top: 5rem !important;
}
.m-p-50{
    width: 50%;
}
.f-12{
    font-size: 12px;
}
footer{
    font-size: 13px;
}
.gf-code{
    padding: 15px;
    padding-bottom: 25px;
    padding-top: 25px;
    /*border-radius: 10px;*/
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    overflow: hidden;
    background: #000000;
    color: #ffffff;
}
.gf-code .line{
    font-weight: 700;
}
.gf-code .arrow_sign{
    color: #df3fca !important;
}
.gf-code .command_git{
    color: #6041ef !important;
}
.gf-code .command_second{
    color: #2e933b !important;
}
.gf-code .command_white{
    color: #ffffff;
}
.gf-code .command_text{
    color: #4feced !important;
}

.card{
    margin-bottom: 20px;
}

.gf-code .gf-copy{
    border: none;
    position: absolute;
    top: 25%;
    right: 10px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    color: #ffffff;
    border-radius: 5px;
    background: #616161;
    font-size: 12px;
    outline: none;
}
.df-description{
    font-size: 11px;
    padding-left: 15px;
    padding-right: 15px;
}

.v-wrapper{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.g-scale{
    filter: grayscale(100%);
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.g-scale:hover{
    filter: grayscale(0%);
}

.card .card-body{
    padding: 0 0 16px 0;
}

@media (max-width: 700px){
    .m-p-50{
        width: 100% !important;
    }
}