.ownrow{
    width:100%;
}

.ownrow:after{
    clear: both;
    content: '';
    display: block;
}

.ownrow div{
    float:left;
}

.col-1{
    width:16.666%;
    width: calc(100%/6);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.col-2{
    width:33.333%;
    width: calc(100%/6*2);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.col-3{
    width:50%;
    width: calc(100%/6*3);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.col-4{
    width:66.666%;
    width: calc(100%/6*4);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.col-5{
    width:83.333%;
    width: calc(100%/6*5);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.col-6{
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.ownbtn-primary{
    font-family: "Exo",sans-serif;
    font-size:18px;
    font-weight: 400;
    background-color: #2c90d1;
    color:#FFF;
    border:1px solid #2c90d1;
    border-radius:2px;
    height:50px;
    width:80%;
    cursor:pointer;
    -webkit-transition: background-color 0.5s, border 0.5s ;
    -moz-transition: background-color 0.5s, border 0.5s;
    -ms-transition: background-color 0.5s, border 0.5s;
    -o-transition: background-color 0.5s, border 0.5s;
    transition: background-color 0.5s, border 0.5s;
}

.ownbtn-primary:hover{
    background-color:#EE0000;
    border:1px solid #EE0000;
}

.ownbtn-cancel{
    cursor: pointer;
    font-family: "Exo",sans-serif;
    font-size:18px;
    font-weight: 400;
    background-color: #DDDDDD;
    color:#333;
    border:1px solid #CCCCCC;
    border-radius:2px;
    height:50px;
    width:80%;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.ownbtn-cancel:hover{
    opacity: 0.7;
}

@media screen and (max-width: 1000px) {



    .col-1{
        width:16.66%;        
        width: calc(100%/6);
    }
    .col-2{
        width:33.33%;
        width:calc(100%/6*2);
    }
    .col-3{
        width:50%;
        width:calc(100%/6*3);
    }
    .col-4{
        width:66.66%;
        width:calc(100%/6*4);
    }
    .col-5{
        width:100%;
        
    }
    .col-6{
        width: 100%;
        
    }
}

@media screen and (max-width: 800px) {

    .ownbtn-primary{
        font-family: "Exo",sans-serif;
        font-size:18px;
        font-weight: 400;
        background-color: #2c90d1;
        color:#FFF;
        border:1px solid #2c90d1;
        border-radius:2px;
        height:50px;
        width:100%;
        cursor:pointer;
        -webkit-transition: background-color 0.5s, border 0.5s ;
        -moz-transition: background-color 0.5s, border 0.5s;
        -ms-transition: background-color 0.5s, border 0.5s;
        -o-transition: background-color 0.5s, border 0.5s;
        transition: background-color 0.5s, border 0.5s;
    }


    .ownbtn-cancel{
        cursor: pointer;
        font-family: "Exo",sans-serif;
        font-size:18px;
        font-weight: 400;
        background-color: #DDDDDD;
        color:#333;
        border:1px solid #CCCCCC;
        border-radius:2px;
        height:50px;
        width:100%;
        margin-bottom:20px;
        -webkit-transition: opacity 0.5s;
        -moz-transition: opacity 0.5s;
        -ms-transition: opacity 0.5s;
        -o-transition: opacity 0.5s;
        transition: opacity 0.5s;
    }

       
    .col-1{
        width:100% !important;        
        width: calc(100%/6*6) !important;
    }
    .col-2{
        width:100% !important;  
        width: calc(100%/6*6) !important;
    }
    .col-3{
        width:100% !important;        
        width: calc(100%/6*6) !important;
    }
    .col-4{
        width:100% !important;        
        width: calc(100%/6*6) !important;
    }
    .col-5{
        width:100% !important;        
        width: calc(100%/6*6) !important;
    }
    .col-6{
        width: 100% !important;        
        width: calc(100%/6*6) !important;
    }
    
    
}