.custom-shape-divider-top {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top svg, .custom-shape-divider-bottom svg {
    position: relative;
    display: block;
	left: -12px;
    width: 110%;
    height: 75px;
}

.custom-shape-divider-top .shape-fill, .custom-shape-divider-bottom .shape-fill {
    fill: #002973;
}

.custom-shape-divider-bottom {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

@media (min-width: 768px) {
	.content {
		margin-top: 56px;
		min-height: calc(100vh - 56px);
		overflow-x: hidden;
	}
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    max-width: 100%;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
}

.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}

/* style 1 */

.inputfile-1 + label {
    color: #f1e5e6;
    background-color: #d3394c;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
    background-color: #722040;
}

/* style 3 */

.inputfile-3 + label {
    color: var(--primary);
}

.inputfile-3:focus + label,
.inputfile-3.has-focus + label,
.inputfile-3 + label:hover {
    color: var(--gray-dark);
}

/* style 4 */

.inputfile-4 + label {
    color: #7ace4c;
}

.inputfile-4:focus + label,
.inputfile-4.has-focus + label,
.inputfile-4 + label:hover {
    color: var(--gray-secondary);
}

.inputfile-4 + label figure {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary);
    display: block;
    padding: 20px;
    margin: 0 auto 10px;
}

.inputfile-4:focus + label figure,
.inputfile-4.has-focus + label figure,
.inputfile-4 + label:hover figure {
    background-color: var(--gray-dark);
}

.inputfile-4 + label svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}