* {
    box-sizing: border-box;
}

#myForm .tab {
    display: none;
    width: 100%;
    margin: 0px auto;
}

#myForm .current {
    display: block;
}

#myForm h1 {
    text-align: center;
}

#myForm input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    border: 1px solid #aaaaaa;
}

#myForm button {
    background-color: #1ca4ce;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
}

#myForm button:hover {
    opacity: 0.8;
}

.previous {
    background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
#myForm .step1, .step2, .step3 {
    height: 60px;
    width: 60px;
    cursor: pointer;
    margin: 0 2px;
    color: #fff;
    background-color: #bbbbbb;
    border: none;
    /*border-radius: 50%; */
    display: inline-block;
    opacity: 0.8;
    padding: 10px;
}

#myForm .step1 {
    background: url('../icons/step1.svg');
    color: #cccccc;
    background-size: 53px;
    background-repeat: no-repeat;
}

#myForm .step2 {
    background: url('../icons/step2.svg');
    background-size: 60px;
    background-repeat: no-repeat;
}

#myForm .step3 {
    background: url('../icons/step3.svg');
    background-size: 60px;
    background-repeat: no-repeat;
}

#myForm .stepnext {
    font-size: 20px;
    margin: 0 5px 0 15px;
    color: #c6c8ca;
}

#myForm .step1.active {
    opacity: 1;
    background: url('../icons/step1active.svg');
    background-size: 53px;
    background-repeat: no-repeat;
}

#myForm .step2.active {
    opacity: 1;
    background: url('../icons/step2active.svg');
    background-size: 60px;
    background-repeat: no-repeat;
}

#myForm .step3.active {
    opacity: 1;
    background: url('../icons/step3active.svg');
    background-size: 60px;
    background-repeat: no-repeat;
}

#myForm .step.finish {
    background-color: #4CAF50;
}

#myForm .error {
    color: #f00;
}
.owner-global .owner:hover{
	background-color: rgba(0, 0, 0, 0.075);
}

.owner{
	border-bottom: 1px solid #dee2e6;
	padding: 10px 0px;
}