/* Colors
Slightly lighter bold coral (works better on black): #FE7260
Bold Coral: #F26553
Darker Bold Coral: #D85849
Red: #D92D20
Link red: #B3433B
Blue: #2F80ED;
Text: #171415
Grey Text: #727272
Light grey: #E0E0E0
Lighter grey: #EAECF0
*/

/* Typography */

* {
    box-sizing: border-box;
}

html {
    font-size: 0.625rem;
    font-family: "proxima-nova", Arial, Helvetica, sans-serif;
}

body {
    padding: 0;
    margin: 0;
    font-size: 2rem;
    line-height: 1.5;
    color: #171415;
}

a.skip-link.focus-visible:focus {
    margin: 2rem;
}

/* Focus indicators */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
area:focus,
.form-control:focus,
input[type="range"]:focus {
  outline: 2px dotted #B3433B;
  outline-offset: 3px;
}

/* Links */
a:link,
a:visited {
    color: #B3433B;
    text-decoration: underline;
}

p {
    margin: 0 0 1em 0;
}

ul, ol {
    margin-bottom: 1em;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Videos */
.video-wrapper {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

[hidden] {
    display: none !important;
}

img,
svg {
    flex: 0 0 auto !important;
    max-width: 100%;
}