.text-page img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}
.text-page img[style="float: left;"] {
	margin: 0 auto 0 0;
	float: none !important;
}
.text-page img[style="float: right;"] {
	margin: 0 0 0 auto;
	float: none !important;
}
.plan-exercise {
    border: 1px solid white;
}

.start-data .h1 {
  font-size: 3.75rem;
  padding: 0 0 40px;
  font-weight: bold;
}
.start-data .h1 span {
  color: #98D4E7;
}
@media (max-width: 991px) {
  .start-data .h1 {
    font-size: 2.125rem;
  }
}

.areas .text-page p {
    padding: 0 0 30px 0;
    margin: 0;
    font-size: 1.25rem;
    line-height: 1;
}
h1 {
    font-size: 2.1rem;
}
p a, p a:visited {
    color: rgb(187 187 250);
}
@media (max-width: 991px) {
    .areas .text-page p {
        font-size: 1.125rem;
    }
    h1 {
      font-size: 1.5rem;
  }
}
.warning-text {
    display: none;
}
.warning-ico {
    position: relative;
}
.warning-ico:before {
    content: '!';
    display: flex;
    position: absolute;
    background: red;
    width: 20px;
    height: 20px;
    color: white;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    font-weight: bold;
    top: -10px;
    left: -9px;
    box-shadow: 0 0 5px gray;
    line-height: 1;
    font-size: 20px;
    text-align: center;
}
.warning-ico:hover .warning-text {
    display: block;
    background: linear-gradient(123deg, #ad428e 0%, #f98c24 100%);
    color: white;
    z-index: 100;
    position: absolute;
    font-size: 12px;
    padding: 10px;
    width: 200px;
    right: 34px;
    bottom: 20px;
    text-align: left;
    border-radius: 10px;
    font-size: 16px;
}
@media (max-width: 991px) {
    .warning-ico:hover .warning-text {
        right: auto;
        left: -50px;
    }
    .warning-ico:before {
        width: 24px;
        height: 24px;
        font-size: 26px;
    }
}
.plan-exercise {
    position: relative;
}
.plan-exercise .actions {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    display: flex;
}
.plan-exercise .actions div {
    margin: 0 0 5px 5px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: #007bc6;
    color: white;
    box-shadow: 0 0 6px gray;
    border-radius: 5px;
    cursor: pointer;
}
.plan-exercise .actions .bt-del {
    background: red;
    
}
.plan-exercise .actions .bt-del:before {
    content: '✖';
    font-size: 14px;
    transform: rotate(45deg);
}
.plan-exercise .actions .bt-edit:before {
    content: '🖊';
    font-size: 14px;
}
.modal-edit-add {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.41);
}
.modal-cont {
    position: absolute;
    width: 800px;
    height: 700px;
    background: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.modal-footer {
    border-top: 1px solid #dedede;
    padding: 10px;
}
.modal-actions {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}
.modal-actions .btn {
    display: flex;
    color: black;
    font-size: 14px;
    padding: 5px 10px;
    border: 1px solid #848484;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    background: white;
    cursor: pointer;
}
.modal-actions .btn.btn-primary {
    color: white;
    background: black;
    border-color: black;
}
.modal-head {
    border-bottom: 1px solid #dedede;
    padding: 10px;
    color: black;
}
.modal-title {
    font-size: 24px;
}
.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}
.modal-edit-add {
    display: none;
}
.modal-body {
    flex: 1;
    overflow: auto;
    color: black;
    padding: 10px;
}
.modal-elem {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}
.modal-elem input[type="date"], .modal-elem input[type="text"], .modal-elem input[type="number"], .modal-elem select {
    border: 1px solid #b5b5b5;
    border-radius: 0;
    font-size: 14px;
    padding: 6px;
}
.bt-add-record {
    background: red;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    margin-bottom: 30px;
    cursor: pointer;
}