@media(min-width:480px){

.form-box label.txt-content{width:33%; margin-bottom:16px; float:left; line-height:29px; font-size:14px; color:rgb(109,109,109);}

input[type=text].txt-box{width:63%; padding:0 5px; height:30px; margin-bottom:17px; box-shadow:0 -1px 0 rgb(191,191,191); float:right; background:rgb(233,233,233); border-radius:5px; border:none;}

.check-box-left {
    color: #6D6D6D;
    float: left;
    font-size: 12px;
    margin: 0 2% 5px 0;
    text-align: left;
    width: 32% ;
}
.chek-box-right {
    float: left;
    width: 64%;
}

#snackbar {
    word-wrap: break-word;
    visibility: hidden; /* Hidden by default. Visible on click */
    /* Set a default minimum width */
    /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 99999; /* Add a z-index if needed */
    left: 33%; /* Center the snackbar */
    top: 40px; /* 30px from the bottom */
    font-size:larger;
    width: 430px;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar. 
   However, delay the fade out process for 2.5 seconds */
   -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s forwards;
   animation: fadein 0.5s, fadeout 0.5s 2.5s forwards; 
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;} 
    to {top: 50px; opacity: 1;}
}

@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 50px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {top: 50px; opacity: 1;} 
    to {top: 0; opacity: 0;}
}

@keyframes fadeout {
    from {top: 50px; opacity: 1;}
    to {top: 0; opacity: 0;}
}
}