/* CSS Document */
body {
    background-repeat: repeat-x;
    background-position: top;
    background-color: #FFF;
    padding: 0 20px;
    margin: auto;
    max-width: 1200px;
    font-size: 18px;
}

.content {
    margin: 25px;
}

.heading-1 {
    font-size: 25px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #A8A8A8;
    color: #3b3b3b;
}

.heading-2 {
    font-size: 18px;
    line-height: 30px;
    border-bottom: 1px solid #A8A8A8;
    color: #3b3b3b;
}

.name-header {
    background-color: #c7c7c7;
    border-radius: 4px;
    color: #404040;
    font-size: 45px;
    margin: 10px 0px;
    padding: 5px;
    text-align: center;
    text-transform: capitalize;
}

.contact {
    margin: 5px auto;
    text-align: center;
}

.contact span {
    margin: 20px;
}

.menubar {
    background-color: #AAA;
    border-radius: 2px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    line-height: 40px;
    margin-bottom: 2px;
}

menubar:hover {
    background: gray;
}

.menubar span {
    margin: auto;
    width: 100%;
    text-align: center;
    border-bottom: 5px solid transparent;
    border-right: 1px solid #FFF;
}

.menubar span:last-child {
    border-right: 0;
}

.menu-link {
    color: #484848;
    font-size: 20px;
    text-decoration: none;
}

.menubar .selected {
    border-bottom: 5px solid #6f6f6f;
}

.menubar .selected a {
    color: #FFF;
}

.screen {
    border-radius: 3px;
    background: #CCC;
    padding: 10px;
    margin: 10px auto;
    max-width: 1200px;
}

.section {
    padding-top: 20px;
}

.section-end {
    border-bottom: 1px solid #A8A8A8;
    display: block;
    margin: auto;
    width: 60%;
}

.skill-table td {
    padding-bottom: 13px;
    vertical-align: top;
}

.skill-table td.bold {
    width: 20%;
}

.my-menu {
    margin: 0 10px;
}

.help-image {
    width: 100%;
}

.professional {
    color: #8000FF;
    font-size: 36px;
    font-weight: bold;
}

.myheading1 {
    color: #357ACE;
    font-size: 24px;
    font-weight: bold;
}

.email,
.phone,
.github {
    font-size: 18px;
    text-transform: lowercase;
}

a {
    border-color: #FFF;
}

.help {
    color: #F00;
    font-size: 20px;
    font-weight: bold;
}

.footer {
    color: #838282;
    font-size: 15px;
    margin: 0 30px;
    height: 50px;
}

.model-thumbs {
    border-radius: 3px;
    opacity: 0.5;
    width: 200px;
    height: 200px;
    cursor: pointer;
}

.resume {
    background: #CCC;
    border: 1px solid #c3c3c3;
    border-radius: 3px;
    margin: 10px 0;
    padding: 20px;
}

#chartId {
    height: 100%;
    position: relative;
    width: 100%;
}

.wait-message {
    display: block;
    position: relative;
    top: 35%;
    margin: 10px auto;
    padding: 4px;
    color: #555;
    font-size: 40px;
}

.loader {
    border: 8px solid #676767;
    border-radius: 50%;
    border-top: 8px solid transparent;
    /* border-bottom: 8px solid #f10000; */
    /* border-left: 8px solid #001bf9; */
    /* border-right: 8px solid #008000; */
    height: 120px;
    position: relative;
    top: 35%;
    width: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.wait-image {
    display: block;
    margin: auto;
    position: relative;
    top: 35%;
}

.highslide img {
    border-radius: 15px;
}

/* iPad */
@media only screen and (max-width: 768px) {}

/* iPhone */
@media only screen and (max-width: 583px) {
    div.name-header {
        font-size: 45px;
    }

    div.contact span {
        display: block;
    }
}