﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}
@keyframes slideOutRight {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

body {
    font-family: Verdana;
    background-color: #f9f7f7 /*rgb(36, 36, 36)*/;
    background-size: 40px 40px;
    background-image: radial-gradient(circle, #dddddd 2px, #f9f7f7 1px);
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    /*    min-width:min-content;*/
}
input {
    font: inherit;
    width: 100%;
    padding: 0.5rem;
    margin: 0;
    min-height: 1.5em;
    box-sizing: border-box;
    border: 1px solid silver;
    border-radius: 4px;
    /*box-sizing: content-box;*/
}

    input:hover {
        background-color: #6fc9dd;
    }
form{
    padding:10px;
}
.Page_Container {
    animation: .9s ease-out 0s 1 slideInLeft;
}
.ResponseModal {
    display: block; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 3; /* Sit on top */
    padding-top: 250px; /* Location of the box */
    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 */
}

.ResponseModal-content {
    text-align: center;
    background-color: #f9f4f4;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 4px;
    width: 30%;
}

.close {
  
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }


.responseSuccess, .responseFail {
    display: flex;
    justify-content: center;
    margin-bottom:10px;
}

.ResponseText {
    font-size: 1.35em;
    color: white;
}

.responseSuccessInner {
    background-color: #4CAF50;
    padding: 10px;
}

.responseFailInner {
    background-color: #FF6161;
    padding: 10px;
}





.label {
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 5px;
}

.LoginButon, .AddCertsButton, .EditProfile {
    display: inline-block;
    border-radius: 4px;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 1em;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}
    .LoginButon:hover, .AddCertsButton:hover, .EditProfile:hover {
        background-color: rgba(0,136,169,0.8);
    }
    .LoginButon span, .AddCertsButton span, .EditProfile span{
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .LoginButon span:after, .AddCertsButton span:after, .EditProfile span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .LoginButon:hover span, .AddCertsButton:hover span, .EditProfile:hover span{
        padding-right: 25px;
    }

        .LoginButon:hover span:after, .AddCertsButton:hover span:after, .EditProfile:hover span:after {
            opacity: 1;
            right: 0;
        }
.AddCertsButton, .EditProfile {
    width: 150px;
    padding: 15px;
    margin: 0px;
    margin-bottom: 2px;
    height:50px;
}
.EditProfile{
    margin-right:10px;
}
.UserProfile-Header h1 {
    padding-top: 20px;
    font-size: 2.5em;
    font-weight: 600;
    text-align: center;
    font-family: Verdana;
    background-image: linear-gradient( #09a4e5, #006b98);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}
.ButtonContainer{
    margin-top:45px;
    display:flex;
    justify-content:right;
}
.CertificationTable-Container {
    margin-top:50px;
    display: flex;
    justify-content: center;
}
.CertificationTable-Inner {
    width: 1000px;
    height: 600px;
    margin-bottom: 50px;
    overflow-y: auto;
}
.CertificationTable {
    border-collapse: collapse;
    font-size: 1.02em;
    font-family: Verdana;
    min-width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  
}

    .CertificationTable thead th {
        background-color: /*#006b98;*/ /*#009879;*/ #2374b3;
        color: #ffffff;
        text-align: left;
        position: sticky;
        top: 0;
    }

    .CertificationTable th,
    .CertificationTable td {
        padding: 15px 15px;
        
    }
    .CertificationTable tbody tr {
        transition: .5s;
    }
    .CertificationTable tbody tr:hover {
        background-color: rgba(47, 165, 244, .5)
    }
    .CertificationTable tbody tr:nth-of-type(even):hover {
        background-color: rgba(47, 165, 244, .5)
    }
    .CertificationTable tbody tr:nth-of-type(odd):hover {
        background-color: rgba(47, 165, 244, .5)
    }
    .CertificationTable tbody tr {
        border-bottom: 1px solid #dddddd;
    }

        .CertificationTable tbody tr:nth-of-type(even) {
            background-color: #cdcdcd;
        }
        .CertificationTable tbody tr:nth-of-type(odd) {
            background-color: #dfdddd;
        }
.CertificationTable tbody tr:last-of-type {
    border-bottom: 2px solid #006b98;
}

.LoginButton-Container{
    display:flex;
    justify-content:center;
    margin-top:20px;
}
.Inner-Container {
    width: 700px;
    height: 500px;
    border: 1px black;
    border-radius: 5px;
    background-color: #E0E0E0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.Information-Container{
    padding:10px;
    font-size:1.05em;
}
.Login-Header {
    margin-bottom:10px;
    text-align: center;
    font-family: Verdana;
}
.LoginButton-Outer {
    margin-top:50px;
    display: flex;
    justify-content: center;
}

.Badging-Header {
    text-align: center;
    font-family: Verdana;

}
.Information-Header{
    margin-bottom:10px;
}
.Badging-Header h1 {
    padding-top: 20px;
    font-size: 3em;
    font-weight: 600;
    text-align: center;
    font-family: Verdana;
    background-image: linear-gradient( #09a4e5, #006b98);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}



.ActionDropdown {
    display: inline-block;
    position: relative;
}

.ActionButton {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    border-radius:4px;
    cursor: pointer;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
}

.ActionButton-content {
    display: none;
    position: absolute;
    right: 50px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}


    .ActionButton-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .ActionButton-content a:hover {
            background-color: #f1f1f1
        }

.ActionDropdown:hover .ActionButton-content {
    display: block;
}

.ActionDropdown:hover .ActionButton {
    background-color: #3e8e41;
}
.EditCertification{
    cursor:pointer;
    text-decoration:none;
}

.Create{
    margin-top:30px;
    display:flex;
    justify-content:center;
}
.SubmitButton{
    margin-top:15px;
    margin-left:10px;
}
.SubmitButtonInner {
    text-align: center
}
.updateCloseButtonContainer{
    margin-top:15px;
}
.IssueDate_Update, .ExpirationDate_Update, .Image {
    margin-top: 15px;
}
#submit{
    font-family: Verdana;
    background-color: #65A0E5;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#65A0E5), to(#0483a0));
    background-image: -webkit-linear-gradient(top, #65A0E5, #0483a0);
    background-image: -moz-linear-gradient(top, #65A0E5, #0483a0);
    background-image: -ms-linear-gradient(top, #65A0E5, #0483a0);
    background-image: -o-linear-gradient(top, #65A0E5, #0483a0);
    background-image: linear-gradient(top, #65A0E5, #0483a0);
    border: 1px solid #00748f;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF;
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF;
    color: #fafafa;
    cursor: pointer;
    height: 40px;
    font: 15px;
    padding: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0,0, .3);
    width: 100px;
}


    #submit:hover,
    #submit:focus {
        background-color: #31b2c3;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#0483a0), to(#31b2c3));
        background-image: -webkit-linear-gradient(top, #0483a0, #31b2c3);
        background-image: -moz-linear-gradient(top, #0483a0, #31b2c3);
        background-image: -ms-linear-gradient(top, #0483a0, #31b2c3);
        background-image: -o-linear-gradient(top, #0483a0, #31b2c3);
        background-image: linear-gradient(top, #0483a0, #31b2c3);
    }

#submit:active, #CloseUpdateButton:active {
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
    outline: 0;
}

#submit::-moz-focus-inner, #CloseUpdateButton::-moz-focus-inner {
    border: 0;
}

input::file-selector-button {
    font-family: Verdana;
    background-color: #65A0E5;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#B3B3B3), to(#828282));
    background-image: -webkit-linear-gradient(top, #B3B3B3, #828282);
    background-image: -moz-linear-gradient(top, #B3B3B3, #828282);
    background-image: -ms-linear-gradient(top, #B3B3B3, #828282);
    background-image: -o-linear-gradient(top, #B3B3B3, #828282);
    background-image: linear-gradient(top, #B3B3B3, #828282);
    border: 1px solid black;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF;
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 1px 0 #FFF;
    color: #fafafa;
    cursor: pointer;
    height: 30px;
    font: 11px;
    padding: 0;
    text-shadow: 0 1px 0 rgba(0, 0,0, .3);
    width: 100px;
}

    input::file-selector-button:hover,
    input::file-selector-button:focus {
        background-color: #31b2c3;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#0483a0), to(#31b2c3));
        background-image: -webkit-linear-gradient(top, #0483a0, #31b2c3);
        background-image: -moz-linear-gradient(top, #0483a0, #31b2c3);
        background-image: -ms-linear-gradient(top, #0483a0, #31b2c3);
        background-image: -o-linear-gradient(top, #0483a0, #31b2c3);
        background-image: linear-gradient(top, #0483a0, #31b2c3);
    }

    input::file-selector-button:active {
        -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
        -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
        outline: 0;
    }

    input::file-selector-button::-moz-focus-inner {
        border: 0;
    }
.ListContainer-Center{
    display:flex;
    justify-content:center
}
.ListContainer {
    border: 1px black;
    border-radius: 5px;
    background-color: #fffcfc;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 5px;
    width: 100px;
}
.ActionList {
    list-style: none;
    text-align:center
}
.ViewImage, .EditCertification {
    margin-bottom: 5px;
}
.ViewImage a {
    text-decoration: none
}
    .ViewImage a:hover, .EditCertification a:hover {
        color: #4475a8;
        font-weight:600;
    }


.DeleteCertificate a {
    cursor: pointer;
    color: #FF6161
}
    .DeleteCertificate a:hover {
        color: #a81a16;
        font-weight:600;
    }


.TableSearch_Container {
    background-color: #f6f6f6;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#eae8e8));
    background-image: -webkit-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: -moz-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: -ms-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: -o-linear-gradient(top, #f6f6f6, #eae8e8);
    background-image: linear-gradient(top, #f6f6f6, #eae8e8);
    border-color: #dedede #bababa #aaa #bababa;
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 3px 3px rgba(255,255,255,.1), 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444;
    -moz-box-shadow: 0 3px 3px rgba(255,255,255,.1), 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444;
    box-shadow: 0 3px 3px rgba(255,255,255,.1), 0 3px 0 #bbb, 0 4px 0 #aaa, 0 5px 5px #444;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 8px;
    width: 50%;
    min-width: 100px;
    display: flex;
}

.TableSearch_Inner {
    display: flex;
}

.Search_Container{
    display:flex; justify-content:space-between
}

.arrow {
    border: solid white;
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 3px;
    transition:.1s;
    cursor:pointer
}
    .arrow:hover {
        border: solid #bcdcf5;
    }
.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.UpArrow_Container{
    margin-left:10px;
}
.DownArrow_Container{
    margin-left:5px;
}

.ExpiredCertification{
    color:red;
}

.CertificationName{
    font-size:1.1em;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .CertificationTable-Inner {
        width: 100%;
    }
    #IssueDate_Id{
        display:none
    }
    .ButtonContainer {
        display: flex;
        justify-content: center;
        margin-top: 0px;
    }

    .Search_Container {
        flex-direction: column;
        justify-content: center;
        
    }
    .TableSearch_Container{
        width:100%;
    }
}



/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .CertificationTable-Inner {
        width: 650px;
    }

    #IssueDate_Id {
        display: table-cell
    }

    .ButtonContainer {
        display: flex;
        flex-direction: column;
        justify-content: right;
        margin-top: 0px;
    }
    .Search_Container {
        justify-content: space-between;
        flex-direction:row;
    }
    .TableSearch_Container {
        width: 50%;
    }

}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .CertificationTable-Inner {
        width: 650px;
    }
    #IssueDate_Id {
        display: table-cell
    }
    .ButtonContainer {
        display: flex;
        flex-direction: column;
        justify-content: right;
        margin-top: 0px;
    }
    .Search_Container {
        justify-content: space-between;
        flex-direction: row;
    }
    .TableSearch_Container {
        width: 50%;
    }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .CertificationTable-Inner{
        width:900px;
    }
    #IssueDate_Id {
        display: table-cell
    }
    .ButtonContainer {
        display: flex;
        flex-direction: row;
        justify-content: right;
        margin-top: 45px;
    }
    .Search_Container {
        justify-content: space-between;
        flex-direction: row;
    }
    .TableSearch_Container {
        width: 50%;
    }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .CertificationTable-Inner {
        width: 1100px;
    }
    #IssueDate_Id {
        display: table-cell
    }
    .ButtonContainer {
        display: flex;
        flex-direction: row;
        justify-content: right;
        margin-top: 45px;
    }
    .Search_Container {
        justify-content: space-between;
        flex-direction: row;
    }
    .TableSearch_Container {
        width: 50%;
    }
}

@media only screen and (min-width: 1600px) {
    .CertificationTable-Inner {
        width: 1550px;
    }

    #IssueDate_Id {
        display: table-cell
    }

    .ButtonContainer {
        display: flex;
        flex-direction: row;
        justify-content: right;
        margin-top: 45px;
    }

    .Search_Container {
        justify-content: space-between;
        flex-direction: row;
    }

    .TableSearch_Container {
        width: 50%;
    }
}