﻿/* css start here */
* {
    margin: 0;
    padding: 0;
}

html, body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden !important;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    display: inline-block;
    outline: medium none !important;
    text-decoration: none !important;
    transition: ease-in-out 0.5s !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #333;
}

p {
    color: #666;
}

.profile_sec {
    padding: 50px 0;
}

.pro_div {
    background: #fff;
    border-radius: 3px;
    transition: ease-in-out 0.5s;
    -moz-box-shadow: 0 1px 10px 0 #0000003b;
    -webkit-box-shadow: 0 1px 10px 0 #0000003b;
    box-shadow: 0 1px 10px 0 #ccc;
    padding: 20px 15px 15px;
    max-width: 600px;
    margin: 0 auto;
}

    .pro_div h4 {
        font-size: 20px;
        font-weight: 600;
    }

    .pro_div span.profile {
        width: 130px;
        height: 130px;
        border: 4px solid #fff;
        border-radius: 100%;
        margin: 0 auto 10px;
        text-align: center;
        box-shadow: 0 0px 9px 0 #ccc;
        -moz-box-shadow: 0 0px 9px 0 #0000003b;
        -webkit-box-shadow: 0 0px 9px 0 #0000003b;
        background: #fbfbfb;
        display: block;
        overflow: hidden;
    }

.pro_list li {
    position: relative;
    color: #333;
    padding: 10px 0 0 25px;
    font-size: 15px;
}

    .pro_list li .fa {
        position: absolute;
        color: #007bff;
        left: 0;
        top: 12px;
        font-size: 16px;
    }

    .pro_list li a {
        max-width: 150px;
        background: #007bff;
        font-weight: 600;
        color: #fff;
        display: block;
        border-radius: 3px;
        padding: 8px 10px;
        font-size: 13px;
        text-align: center;
        box-shadow: 0 3px 8px 0 #ccc;
        margin-top: 5px;
    }
.pro_list button {
    max-width: 175px;
    background: #175497;
    font-weight: 600;
    color: #fff;
    display: block;
    border-radius: 3px;
    padding: 8px 10px;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 3px 8px 0 #ccc;
    margin-top: 5px;
}

    .pro_list button:hover {
        background-color: lightgray;
        color: #175497
    }
    .enrollbutton button {
    max-width: 175px;
    background: #007bff;
    font-weight: 600;
    color: red;
    display: block;
    border-radius: 3px;
    padding: 8px 10px;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 3px 8px 0 #ccc;
    margin-top: 5px;
}

.pro_list button:disabled {
    max-width: 175px;
    background: #666;
    font-weight: 600;
    color: #fff;
    display: block;
    border-radius: 3px;
    padding: 8px 10px;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 3px 8px 0 #ccc;
    margin-top: 5px;
}
.pro_list select {
    margin: 20px 0 15px;
    padding: 0 15px;
    height: 50px !important;
    outline: none;
    box-shadow: none !important;
    border: 1px solid #e2e2e2;
    font-size: 15px;
}

.pro_list h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px;
}

.pro_list p {
    font-size: 15px;
    margin: 10px 0 15px;
}

.pro_list a {
    background: #007bff;
    font-weight: 600;
    color: #fff;
    display: block;
    border-radius: 3px;
    padding: 15px 10px;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 3px 8px 0 #ccc;
}

    .pro_list a:hover {
        background: #066bd8;
    }

/* custom checkbox css start here */
.pro_list .container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .pro_list .container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        top: 0;
        left: 0;
    }

/* Create a custom checkbox */
.pro_list .checkmark {
    position: absolute;
    top: 13px;
    left: 10px;
    height: 20px;
    width: 20px;
    background-color: #cccbcb;
}
/* On mouse-over, add a grey background color */
.pro_list .container:hover input ~ .checkmark {
    background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
.pro_list .container input:checked ~ .checkmark {
    background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.pro_list .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.pro_list .container input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.pro_list .container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.pro_list .container {
    width: auto !important;
    margin: 0 0 8px;
    vertical-align: middle;
    max-width: inherit !important;
    display: block;
    padding-right: 0;
    font-size: 16px;
    font-weight: 500;
    background: #f5f5f5;
    padding: 10px 10px 10px 40px;
    border-radius: 4px;
}
/* custom checkbox css end here */

.gt_add_fav  {
    float: left;
    width: 50%;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
    padding: 15px 0
}



.gt_add_fav  {
    background-color: #25b762;
    border-bottom-right-radius: 5px
}

.gt_add_fav a:hover {
    background-color: #222;
    cursor:pointer;
  
}

