.txt-field {
    font-family: 'News Cycle', sans-serif;
    font-size:14px;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.news-cycle-font {
    font-family: 'News Cycle', sans-serif;
}

.txt-width-normal {
    width: 100%;
}

.txt-width-ddl-dial-code {
    width: 200px;
}

.txt-field:focus {
    background: #d3f7d0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.btn {
    font-family: 'Raleway', sans-serif;
    font-weight:bold;
    padding: 12px 20px;
    margin: 8px 0;
    border: none;
    font-size:15px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.5s;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.btn-width-normal {
    width: 100%;
}

.colour-green {
    color: #ffffff;
    background-color: #6bcc42;
}

.colour-red {
    color: #ffffff;
    background-color: #f30606;
}

.colour-gray {
    color: #ffffff;
    background-color: #9b9898;
}

.colour-yellow {
    color: #000000;
    background-color: #fff700;
}

.btn:hover {
    opacity: 0.7;
}

.a-link {
    text-decoration: none;
    color: #000000;
    transition: all 0.5s;
    font-weight: bold;
}

.a-link:hover {
    color: #ffffff;
}

.warning-errors {
    font-family: 'News Cycle', sans-serif;
    color: #ff0000;
    font-size: 13px;
    display: none;
}

/* Screen size change Notebook */
@media screen and (min-width: 1024px) and (max-width : 1279px){
    .txt-width-ddl-dial-code {
        width: 200px;
    }
    
    .btn {
        font-size:15px;
    }

    .txt-field {
        font-size: 14px;
    }
    
    .warning-errors {
        font-size: 13px;
    }
}

/* Screen size change Tablet */
@media screen and (min-width : 768px) and (max-width : 1023px){
    .txt-width-ddl-dial-code {
        width: 170px;
    }
    
    .btn {
        font-size:14px;
    }

    .txt-field {
        font-size: 13px;
    }
    
    .warning-errors {
        font-size: 12px;
    }
}

/* Screen size change phone (horizontal) */
@media screen and (min-width : 450px) and (max-width : 767px){
    .txt-width-ddl-dial-code {
        width: 150px;
    }
    
    .btn {
        font-size:13px;
    }

    .txt-field {
        font-size: 12px;
    }
    
    .warning-errors {
        font-size: 11px;
    }
}

/* Screen size change phone (vertical) */
@media screen and (min-width : 0px) and (max-width : 449px){
    .txt-width-ddl-dial-code {
        width: 120px;
    }
    
    .btn {
        font-size:13px;
    }

    .txt-field {
        font-size: 12px;
    }
    
    .warning-errors {
        font-size: 11px;
    }
}
