
/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

    /* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #ccc;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    /*padding: 6px 12px;*/
    border: 1px solid #ccc;
    border-top: none;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
    border-radius: 0 0 14px 14px;
}
@media (max-width: 641px) {
    .modal-content { 
        width:80%; 
    }
}
.modal-title {
    background: #0f8a9d;
    margin: -4% -4%;  
    padding: 15px;   
    border: 1px solid #888;
    width: 108%;
    border-radius: 14px 14px 0 0; 
    box-shadow: 0 6px 30px #E3E7EB;
    height:70px;
    top:0;
}
.modal-title .h1{
    color:#fefefe;
    font-size:22px;  position:relative;top:-50px;;
}
    .modal-title .h2 {
        color: #d5d2d2;
        font-size: 14px;
        position: relative;
        top: -30px; 
    }
/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
.yearly{
    font-size:16px;
}


/* Full-width input fields */
input[type=text], input[type=password] , input[type=email]{
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}

    input[type=text]:focus, input[type=password]:focus {
        background-color: #ddd;
        outline: none;
    }

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

/* Set a style for all buttons */
.signupbtn {
    background-color: #04AA6D;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

    button:hover {
        opacity: 1;
    }

/* Extra styles for the cancel button */
.cancelbtn {
    padding: 14px 20px;
    background-color: #f44336;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
    float: left;
    width: 100%;
}

/* Add padding to container elements */
.container.su {
    width: 40%;
    padding: 16px;
   /* background: #0f8a9d;
    background: linear-gradient(57deg, #00C6A7 0%, #1E4D92 100%);*/
}
@media (max-width: 641px) {
    .container.su {
        width: 75%;
    }
}
    /* Clear floats */
    .clearfix::after {
        content: "";
        clear: both;
        display: table;
    }

    /* Change styles for cancel button and signup button on extra small screens */
    @media screen and (max-width: 300px) {
        .cancelbtn, .signupbtn {
            width: 100%;
        }
    }
.text-danger
{
    font-size:12px;
    color:red;
}
.container.table {
    width: 60%;
    padding: 6px;
    /* background: #0f8a9d;
    background: linear-gradient(57deg, #00C6A7 0%, #1E4D92 100%);*/
}