
/***********************************************************************************
Universal Typography
************************************************************************************/

.mode {
    float: left;
}

.change {
    cursor: pointer;
    font-size: xx-small;
    border: 1px solid #555;
    border-radius: 40%;
    width: 20px;
    text-align: center;
    padding: 5px;
    margin-right: 8px;
    
}

.dark{
    background-color: rgb(133, 129, 129);
    color: rgb(26, 216, 165);
    font-weight: bold;
    background-image: none;
}

body {
    font-family: 'Ubuntu', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;

    background-image: url(/perfect_pictures/scene3.jpg);
    /* background-repeat: no-repeat; */
    /* background-size: contain; */
   
    
     
}

body,
a {
    color: rgba(0, 0, 0, 0.5);
}

/* Titles: Used template wide. */

h1, h2 {
    font-size: 15px;
    color: #404040;
    text-transform: uppercase;
    text-shadow: 1px 1px rgba(64, 64, 64, 0.095);

    margin-bottom: 5px;
}

/* Links: Links within paragraphs. */

p a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);

    color: #404040;
}

p a:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    
    color: #404040;
    text-shadow: 1px 1px rgba(64, 64, 64, 0.095);
}

/***********************************************************************************
Buttons & Titles
************************************************************************************/

.button,
.title {
    font-size: 12px;
    line-height: 40px;
    text-transform: uppercase;

    height: 40px;

    display: inline-block;

    padding: 0 20px;
}

.button {
    background-color: #404040;

    color: rgba(255, 255, 255, 0.85);
}

.button:hover {
    color: #ffffff;
}

/* Green: Only used for the contact form so far. */

.button.green {
    background-color: #00ab6b;
}

/***********************************************************************************
Forms
************************************************************************************/

input[type='text'],
input[type='email'],
textarea {
    border-color: rgba(0, 0, 0, 0.075);

    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.5);

    width: 100%;

    float: left;

    padding: 0 0 5px;
    margin: 0 0 15px;
}

/* Hover: On Hover styles. */

input[type='text']:hover,
input[type='email']:hover,
textarea:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

/* Focus: On focus styles. */

input[type='text']:focus,
input[type='email']:focus,
textarea:focus {
    border-color: rgba(0, 0, 0, 0.25);

    color: rgba(0, 0, 0, 0.75);
}

/* Textareas: Single line expandable. */

textarea {
    height: 20px;

    padding: 0 0 5px;
}

/* Placeholder: Font colors for placeholder text. */

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

:-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

/***********************************************************************************
Social
************************************************************************************/

.social {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 20px;
}

/* Networks: Current social network integrations. */

.social.twitter {
    background-image: url(../images/icon-twitter.png);
}

.social.snapchat {
    background-image: url(../images/icon-snapchat.png);
}

.social.facebook {
    background-image: url(../images/icon-facebook.png);
}

.social.instagram {
    background-image: url(../images/icon-instagram.png);
}

.social.medium {
    background-image: url(../images/icon-medium.png);
}

.social.dribbble {
    background-image: url(../images/icon-dribbble.png);
}

.social.email {
    background-image: url(../images/icon-email.png);
}

/***********************************************************************************
Universal Content Containers
************************************************************************************/

.row {
    width: 100%;

    float: left;

    position: relative;
}

.row .content {
    width: 60%;

    margin: 0 auto;

    position: relative;
}

/* Sections: Section titles & borders. */

section .title {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

    position: absolute;
    top: -15px;
    left: 50%;

    transform: translateX(-50%);
    white-space: nowrap;
    line-height: 1.2;
    height: auto;
}

section:not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.075);
}

/***********************************************************************************
The Header
************************************************************************************/

#header {
    width: 80px;

    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1000;
}

/* Profile: The circular profile picture. */

#header .profile {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    border-radius: 50%;

    width: 100%;
    height: 80px;

    float: left;

    margin-bottom: 12.5px;

    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
}

/* Social: Social link layout. */

#header .social {
    width: 100%;
    height: 50px;

    float: left;
}

#header .social:hover {
    opacity: 0.5;
}

/***********************************************************************************
Section Intros
************************************************************************************/

.intro {
    padding: 95px 0;
}

/* Header: For links or titles. */

.intro .content header {
    margin-bottom: 35px;
}

/* Media & Forms: For the about image and contact form. */

.intro .content .media {
    margin-bottom: 34px;
}

.intro .content .form {
    margin-bottom: 19px;
}

/* Copy: The intro text (right). */

.intro .content footer .copy {
    width: 50%;

    float: left;

    margin-left: 50%;
}

/* Actions: The intro actions (left). */

.intro .content footer .actions {
    text-align: center;

    width: 50%;
    height: 40px;

    position: absolute;
    top: 50%;
    left: 0;

    margin-top: -20px;
}

/***********************************************************************************
About
************************************************************************************/

/* Navigation: The primary nav for all sections. */

#about .content nav a {
    font-size: 12px;
    text-transform: uppercase;

    float: left;

    margin-right: 25px;
}

#about .content nav a.current,
#about .content nav a:hover {
    color: #404040;
    text-shadow: 1px 1px rgba(64, 64, 64, 0.095);
}

/* Image: The big image for the about section. */

#about .content .media {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    padding-bottom: 50%;

    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
}

/***********************************************************************************
Work
************************************************************************************/

#work {
    padding: 100px 0 60px;
}

#work .content {
    width: calc(100% - 40px);
}

/* Articles: Primary layout for the work grid. */

#work .content article {
    width: 25%;

    float: left;

    padding: 0 20px;
    margin: 0 0 34px;

    transition-duration: .25s;
}

/* Media: The screenshot for each item. */

#work .content article .media {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    position: relative;

    padding-bottom: 100%;
    margin-bottom: 14px;

    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
}

#work .content article .media a {
    background-color: #404040;

    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;

    content: '';

    opacity: 0;
}

#work .content article .media a span {
    font-size: 12px;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);

    width: 100%;
    height: 40px;

    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1200;

    margin-top: -20px;
}

#work .content article .media .actions .button {
    opacity: 0;
}

/* Copy: The title and descreiption (faded). */

#work .content article .copy {
    min-height: 140px;
    position: relative;
    overflow: visible;
    padding: 10px 0;
    background: transparent;
}

#work .content article .copy h2 {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 5px;
    line-height: 1.3;
    background: transparent;
    padding: 0;
}

#work .content article .copy p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 8px;
    background: transparent;
}

#work .content article .copy:after {
    display: none;
}

/***********************************************************************************
Project Filter
************************************************************************************/

.project-filter-container {
    width: 100%;
    float: left;
    margin-bottom: 30px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #404040;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.project-filter {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.75);
    
    padding: 8px 15px;
    padding-right: 35px;
    
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23404040' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease;
    
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.project-filter:hover {
    border-color: rgba(0, 0, 0, 0.25);
}

.project-filter:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.project-filter option {
    padding: 8px;
    background-color: #ffffff;
}

/***********************************************************************************
Project Categories
************************************************************************************/

.project-category {
    width: 100%;
    float: left;
    clear: both;
    margin: 40px 0 20px;
    padding: 0 20px;
}

.project-category:first-child {
    margin-top: 0;
}

.category-title {
    font-size: 18px;
    font-weight: 600;
    color: #404040;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.project-category-tag {
    font-size: 11px;
    color: #667eea;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin: -8px 0 8px 0;
    padding: 4px 8px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 4px;
    display: inline-block;
}

/* Uniform Project Images - Category-based backgrounds */
.library-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23ffffff" opacity="0.1" width="400" height="400"/><path d="M200 50 L250 150 L150 150 Z" fill="%23ffffff" opacity="0.2"/><circle cx="200" cy="200" r="50" fill="%23ffffff" opacity="0.1"/></svg>');
}

.backend-bg {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    background-image: 
        linear-gradient(135deg, rgba(17, 153, 142, 0.9) 0%, rgba(56, 239, 125, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23ffffff" opacity="0.1" width="400" height="400"/><rect x="100" y="100" width="200" height="200" fill="%23ffffff" opacity="0.15"/><rect x="150" y="150" width="100" height="100" fill="%23ffffff" opacity="0.2"/></svg>');
}

.devops-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: 
        linear-gradient(135deg, rgba(240, 147, 251, 0.9) 0%, rgba(245, 87, 108, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23ffffff" opacity="0.1" width="400" height="400"/><circle cx="200" cy="200" r="80" fill="%23ffffff" opacity="0.15"/><circle cx="200" cy="200" r="40" fill="%23ffffff" opacity="0.2"/></svg>');
}

.tooling-bg {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    background-image: 
        linear-gradient(135deg, rgba(250, 112, 154, 0.9) 0%, rgba(254, 225, 64, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23ffffff" opacity="0.1" width="400" height="400"/><path d="M100 200 L200 100 L300 200 L200 300 Z" fill="%23ffffff" opacity="0.15"/></svg>');
}

.mobile-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    background-image: 
        linear-gradient(135deg, rgba(79, 172, 254, 0.9) 0%, rgba(0, 242, 254, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23ffffff" opacity="0.1" width="400" height="400"/><rect x="150" y="50" width="100" height="300" rx="20" fill="%23ffffff" opacity="0.15"/><rect x="170" y="100" width="60" height="200" fill="%23ffffff" opacity="0.2"/></svg>');
}

/***********************************************************************************
Projects
************************************************************************************/

#project {
    background: linear-gradient(to right, rgba(236, 236, 236, 0.98), rgba(255, 255, 255, 0.98));

    width: calc(100% - 200px);
    height: calc(100% - 100px);

    position: fixed;
    top: 50px;
    left: 0;
    z-index: 5000;

    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
}

/* States: Open and closed states. */

#project.closed {
    display: none;
}

#project.opened {
    display: block;
}

/* Close: Styling the close button. */

#project .close {
    width: 20px;
    height: 20px;

    display: block;

    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5100;
}

#project .close:before,
#project .close:after {
    position: absolute;

    content: '';
}

#project .close:before {
    width: 12px;
    height: 12px;

    top: 3px;
    left: 3px;
}

#project .close:after {
    width: 4px;
    height: 4px;

    top: 7px;
    left: 7px;
}

#project .close,
#project .close:before,
#project .close:after {
    border: 1px solid #404040;
    border-radius: 50%;

    transition-duration: 0.25s;
}

#project .close:hover,
#project .close:hover:before,
#project .close:hover:after {
    border-color: #f3605f;
}

/* Content: Container for project modal content. */
#project .content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
}

/***********************************************************************************
Profile Modal
************************************************************************************/

#profile-modal {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);

    width: 100%;
    height: 100%;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 6000;

    display: flex;
    align-items: center;
    justify-content: center;
}

#profile-modal.closed {
    display: none;
}

#profile-modal.opened {
    display: flex;
}

#profile-modal .close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 6100;
    cursor: pointer;
    transition: all 0.3s ease;
}

#profile-modal .close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

#profile-modal .close:before,
#profile-modal .close:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

#profile-modal .close:before {
    transform: rotate(45deg);
}

#profile-modal .close:after {
    transform: rotate(-45deg);
}

#profile-modal .content {
    width: 90%;
    max-width: 600px;
    position: relative;
}

#profile-modal .profile-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#profile-modal .profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-link {
    cursor: pointer;
    text-decoration: none;
}

/***********************************************************************************
Resume Modal
************************************************************************************/

#resume-modal {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);

    width: 100%;
    height: 100%;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 6000;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

#resume-modal.closed {
    display: none;
}

#resume-modal.opened {
    display: flex;
}

#resume-modal .close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 6100;
    cursor: pointer;
    transition: all 0.3s ease;
}

#resume-modal .close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

#resume-modal .close:before,
#resume-modal .close:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

#resume-modal .close:before {
    transform: rotate(45deg);
}

#resume-modal .close:after {
    transform: rotate(-45deg);
}

#resume-modal .content {
    width: 95%;
    max-width: 414px;
    height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#resume-modal .resume-container {
    width: 414px;
    min-width: 414px;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

#resume-modal .resume-container iframe {
    width: 414px;
    min-width: 414px;
    height: 100%;
    border: none;
    flex: 1;
    transition: height 0.5s ease;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: scale(1);
    transform-origin: top left;
}

#resume-modal .resume-container.actions-visible iframe {
    height: calc(100% - 60px);
}

#resume-modal .resume-actions {
    padding: 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease, padding 0.5s ease;
    height: 0;
    overflow: hidden;
    margin: 0;
}

#resume-modal .resume-actions.visible {
    opacity: 1;
    height: auto;
    padding: 15px 20px;
}

#resume-modal .resume-actions .button {
    background-color: #404040;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 20px;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

#resume-modal .resume-actions .button:hover {
    color: #ffffff;
    background-color: #505050;
}

/* Copy: The project copy. */

#project .content .copy {
    width: 50%;
    height: 100%;
    min-width: 400px;
    max-width: none;
    
    position: relative;
    flex-shrink: 1;
    flex-basis: 50%;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    padding: 60px 50px 40px;
    overflow-y: auto;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    
    /* Reset any conflicting styles */
    float: none !important;
    left: auto !important;
    margin: 0 !important;
}

#project .content .copy .row {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-width: 0 !important;
}

#project .content .copy h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 15px 0;
    line-height: 1.2;
    width: 100%;
    min-width: 0;
    float: none !important;
    display: block !important;
    clear: both !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#project .content .copy .project-category-tag {
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    min-width: 0;
    word-wrap: break-word;
}

#project .content .copy p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 20px 0;
    width: 100% !important;
    min-width: 0;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
    clear: both !important;
    word-wrap: normal;
    overflow-wrap: normal;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

#project .content .copy p:last-child {
    margin-bottom: 0;
}

#project .content .copy a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#project .content .copy a:hover {
    color: #5568d3;
}

/* Project iframe container: The GitHub repository iframe on the left side. */

#project .content .project-iframe-container {
    width: 50%;
    height: 100%;
    flex-basis: 50%;
    flex-shrink: 0;
    flex-grow: 0;
    
    position: relative;
    
    display: flex;
    flex-direction: column;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

#project .content .project-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    flex: 1;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    min-height: 0;
    background: #ffffff;
}

#project .content .project-iframe-container.project-actions-visible iframe {
    height: calc(100% - 60px);
}

#project .content .project-iframe-container .project-actions {
    padding: 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease, padding 0.5s ease;
    height: 0;
    overflow: hidden;
    margin: 0;
}

#project .content .project-iframe-container .project-actions.visible {
    opacity: 1;
    height: auto;
    padding: 15px 20px;
}

#project .content .project-iframe-container .project-actions .button {
    background-color: #404040;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 20px;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

#project .content .project-iframe-container .project-actions .button:hover {
    color: #ffffff;
    background-color: #505050;
}

/***********************************************************************************
Arrivals
************************************************************************************/

#arrivals {
    padding: 95px 0 67px;
}

/* Articles: Primary layout for arrival items. */

#arrivals .content article {
    margin-bottom: 29px;
}

/* Typography: Typography for arrival items. */

#arrivals .content article h2,
#arrivals .content article p {
    float: left;
}

#arrivals .content article h2 {
    margin-bottom: 0;
}

#arrivals .content article span {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.25);
    text-transform: uppercase;

    position: absolute;
    top: 4px;
    right: 0;
}

/* Status: Status lines for arrival items. */

#arrivals .content article .status {
    background-color: rgba(0, 0, 0, 0.075);

    width: 100%;
    height: 1px;

    float: left;

    position: relative;

    margin: 8px 0 7px;
}

#arrivals .content article .status .current {
    background-color: rgba(0, 0, 0, 0.5);

    width: 0px;
    height: 1px;

    position: absolute;
    top: 0;
    left: 0;

    transition-duration: 1s;
}

#arrivals .content article .status .current:after {
    background-color: #777777;

    border-radius: 50%;
    
    width: 7px;
    height: 7px;

    position: absolute;
    top: -3px;
    right: 0;

    content: '';
}

/* Widths: Width classed for arrival items in tens. */

#arrivals .content article .status .current.ten.in-view {
    width: 10%;
}

#arrivals .content article .status .current.twenty.in-view {
    width: 20%;
}

#arrivals .content article .status .current.thirty.in-view {
    width: 30%;
}

#arrivals .content article .status .current.fourty.in-view {
    width: 40%;
}

#arrivals .content article .status .current.fifty.in-view {
    width: 50%;
}

#arrivals .content article .status .current.sixty.in-view {
    width: 60%;
}

#arrivals .content article .status .current.seventy.in-view {
    width: 70%;
}

#arrivals .content article .status .current.eighty.in-view {
    width: 80%;
}

#arrivals .content article .status .current.ninety.in-view {
    width: 90%;
}

/***********************************************************************************
Contact
************************************************************************************/

#contact {
    padding-top: 93px;
  
}

#contact .message.error,
#contact .message.success {
    text-align: center;

    margin-bottom: 71px;
}

#contact .message.error {
    color: #f3605f;
}

#contact .message.success {
    color: #00ab6b;
}

#contact-form {
    font-weight: bolder;
}

