/*//////////////////////////////////////////////////////////////////
[ REBOOT ]*/
*, *:before, *:after {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body, html {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #666666;
    height: 100%;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*---------------------------------------------*/
h1,h2,h3,h4,h5,h6,p {
    margin: 0px;
    line-height: unset;
    font-size: unset;
}

ul, li {
    margin: 0px;
    list-style-type: none;
}

/*---------------------------------------------*/
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea, label {
    width: 100%;
    /* Full width */
    padding: 12px;
    /* Some padding */
    border: 1px solid #ccc;
    /* Gray border */
    border-radius: 4px;
    /* Rounded borders */
    box-sizing: border-box;
    /* Make sure that padding and width stays in place */
    margin-top: 6px;
    /* Add a top margin */
    margin-bottom: 16px;
    /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
    background-color: #45a049;
}


/* Add a background color and some padding around the form */
.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}


button:focus {
    outline: none;
}

iframe {
    border: none;
}

.p-t-40, .p-tb-40, .p-all-40 {
    padding-top: 40px;
}

.p-t-70, .p-tb-70, .p-all-70 {
    padding-top: 70px;
}

.p-b-20, .p-tb-20, .p-all-20 {
    padding-bottom: 20px;
}

.p-b-25, .p-tb-25, .p-all-25 {
    padding-bottom: 25px;
}

.m-r--8, .m-rl--8, .m-all--8 {
    margin-right: -8px;
}
