_shoppingcart.scss 22.7 KB
Newer Older
1 2 3 4
// lms - views - shopping cart
// ====================

.notification {
5
  padding: ($baseline*1.5) ($baseline*1.5) 0 ($baseline*1.5);
6 7
}

8
.error_msg {
9 10
  margin: $baseline;
  padding: ($baseline/4);
11 12 13 14
  color: $red;
  border: 1px solid $red;

}
15

16
.cart-errors{
17 18 19 20 21 22
  background: #FFEEF5;
  color:#B72667;
  text-align: center;
  padding: ($baseline/2) 0;
  font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
  font-size: 15px;
23
  border-bottom: 1px solid #B72667;
24
  margin-bottom: $baseline;
25 26
  display: none;
}
27

28
.cart-list {
29
  padding: ($baseline*1.5);
30
  margin-top: ($baseline*2);
31 32 33
  border-radius: 3px;
  border: 1px solid $border-color-1;
  background-color: $action-primary-fg;
34

35 36 37 38
  > h2 {
    font-size: 1.5em;
    color: $base-font-color;
  }
39

40 41
  .cart-table {
    width: 100%;
42 43 44 45 46 47

    tr:nth-child(even) {
      background-color: $gray-l6;
      border-bottom: 1px solid $gray-l5;
    }

48 49
    tr.always-gray{
      background: #eee !important;
50
      border-top: 2px solid $white;
51
    }
52 53 54 55 56

    tr.always-white {
      background: $white !important;

      td {
57
        padding: ($baseline*1.5) 0 ($baseline/2);
58 59 60
      }
    }

61 62 63 64 65 66 67 68 69
    tr td.cart-total {
      padding: ($baseline/2) 0;

      span {
        display: inline-block;
        margin-right: ($baseline*0.75);
        margin-left: ($baseline*0.75);
        font-weight: bold;
      }
70
    }
71

72 73
    .cart-headings {
      height: 35px;
74 75
      border-bottom: 1px solid #BEBEBE;

76 77 78
      th {
        text-align: left;
        border-bottom: 1px solid $border-color-1;
79

80 81 82
        &.qty {
          width: 100px;
        }
83

84
        &.u-pr {
85
          width: 70px;
86
        }
87

88 89 90
        &.prc {
          width: 150px;
        }
91

92 93
        &.cur {
          width: 100px;
94
          text-align: center;
95
        }
96

97 98 99
        &.dsc{
          width: 640px;
          padding-right: 50px;
100
          text-align: left;
101
        }
102 103
      }
    }
104

105 106
    .cart-items {
      td {
107
        padding: ($baseline/2) 0;
108 109
        position: relative;
        line-height: normal;
110 111

        span.old-price {
112 113 114 115 116
          position: relative;
          text-decoration: line-through;
          color: red;
          font-size: 12px;
          top: -1px;
117
          margin-left: 3px;
118 119
        }
      }
120 121

      td:nth-child(3) {
122 123
        text-align: center;
      }
124 125

      td:last-child {
126
        width: 50px;
127 128
        text-align: center;
      }
129 130 131 132 133

      td:nth-child(1) {
        line-height: 22px;
        text-align: left;
        padding-right: $baseline;
134 135
      }
    }
136

137 138 139 140 141
    .cart-totals {
      td {
        &.cart-total-cost {
          font-size: 1.25em;
          font-weight: bold;
142
          padding: ($baseline/2) 25px;
143 144 145 146
        }
      }
    }
  }
147

148 149
  table.order-receipt {
    width: 100%;
150

151 152 153 154 155 156 157
    .order-number {
      font-weight: bold;
    }
    .order-date {
      text-align: right;
    }
    .items-ordered {
158
      padding-top: ($baseline*2.5);
159
    }
160

161 162
    tr {
    }
163

164 165 166
    th {
      text-align: left;
      padding: 25px 0 15px 0;
167

168 169 170
      &.qty {
        width: 50px;
      }
171

172 173 174
      &.u-pr {
        width: 100px;
      }
175

176 177 178
      &.pri {
        width: 125px;
      }
179

180 181 182 183
      &.curr {
        width: 75px;
      }
    }
184

185 186
    tr.order-item {
      td {
187
        padding-bottom: ($baseline/2);
188 189

        span.old-price {
190 191
          text-decoration: line-through !important;
        }
192 193 194
      }
    }
  }
195
}
196

197 198
#expiry-msg {
  padding: 15px;
199
  background-color: $gray-l5;
200 201 202
  margin-top: 3px;
  font-family: $sans-serif;
  font-size: 14px;
203
  text-shadow: 0px 1px 1px $white;
204 205
  border-top: 1px solid #f0f0f0;
}
206
.confirm-enrollment {
207

208 209
  .title {
    font-size:24px;
210
    border-bottom:1px solid $gray-l5;
211 212 213
    text-align: left;
    line-height:70px;
  }
214

215 216 217
  .course-image {
    display: inline-block;
    width: 223px;
218
    margin-right: ($baseline/2);
219 220
    vertical-align: top;
  }
221

222
  .enrollment-details {
223
    margin-bottom: $baseline;
224 225
    display: inline-block;
    width: calc(100% - 237px);
226

227 228 229 230 231
    .sub-title {
      font-size: 18px;
      text-transform: uppercase;
      color: #9b9b93;
    }
232

233 234 235 236
    .course-date-label {
      float: right;
      color: #9b9b93;
    }
237

238 239 240 241
    .course-dates {
      float: right;
      font-size: 18px;
    }
242

243 244 245 246 247 248 249 250
    .course-title {
      h1 {
        color: #4a4a46;
        font-size: 26px;
        text-align: left;
        font-weight: 600;
      }
    }
251

252
    .enrollment-text {
253
      color: #9b9b93;
254 255 256 257 258 259 260
      font-family: 'Open Sans',Verdana,Geneva,sans;
      line-height: normal;
      a {
        font-family: 'Open Sans',Verdana,Geneva,sans;
      }
    }
  }
261

262 263 264 265 266 267 268
  a.contact-support-bg-color {
    background-color: #9b9b9b;
    background-image: linear-gradient(#9b9b9b, #9b9b9b);
    border: 16px solid #9b9b9b;
    box-shadow: 0 1px 0 0 #9b9b9b inset;
    text-shadow: 0 1px 0 #9b9b9b;
  }
269

270 271 272 273 274 275 276 277 278 279 280 281 282
  a.course-link-bg-color {
    background-color: #00A1E5;
    border: 16px solid #00A1E5;
    box-shadow: 0 1px 0 0 #00A1E5 inset;
    text-shadow: 0 1px 0 #00A1E5;
  }

  a.link-button {
    text-transform: none;
    width: 250px;
    background-clip: padding-box;
    float: right;
    border-radius: 3px;
283
    color: $white;
284 285 286 287 288
    display: inline-block;
    padding: 6px 18px;
    text-decoration: none;
    font-size: 24px;
    text-align: center;
289

290 291 292 293 294
    &:hover {
      background: $m-blue-d2;
      border: 16px solid  $m-blue-d2;
      box-shadow: 0 1px 0 0 $m-blue-d2 inset;
    }
295
  }
296

297 298 299 300 301 302 303 304 305 306 307
  input[type="submit"] {
    text-transform: none;
    width: 450px;
    height: 70px;
    background-clip: padding-box;
    background-color: #00a1e5;
    background-image: linear-gradient(#00A1E5,#00A1E5);
    float: right;
    border: 1px solid #00A1E5;
    border-radius: 3px;
    box-shadow: 0 1px 0 0 #00A1E5 inset;
308
    color: $white;
309 310 311 312 313
    display: inline-block;
    padding: 7px 18px;
    text-decoration: none;
    text-shadow: 0 1px 0 #00A1E5;
    font-size: 24px;
314

315 316 317 318
    &:hover {
      background: $m-blue-d2;
      box-shadow: none;
    }
319
  }
320 321
}

322 323 324 325 326 327 328 329 330 331 332 333 334 335
.shopping-cart {

  a.blue {
    display: inline-block;
    background: $blue2;
    color: white;
    padding: $baseline ($baseline*2);
    border-radius: 3px;
    font-size: 24px;
    font-weight: 400;
    margin: ($baseline/2) 0 $baseline;

    &:hover {
      text-decoration: none;
336
    }
337 338 339
  }

  .relative {
340 341
    position: relative;
  }
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372

  input[type="text"], input[type="email"], select {
    font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
    font-style: normal;
    border: 2px solid $dark-gray2;
    height: auto;
    padding: 8px 12px;
    font-weight: 600;
    width: 260px;
    font-size: 16px;

    &:focus {
      border-color: $dark-gray2;
      box-shadow: none;
      outline: none;
    }

    &.error {
      border-color: $red1;
    }
  }

  .hidden {
    display: none;
  }

  .show {
    display: inline-block;
  }

  h1 {
373 374 375
    font-size: 24px;
    color: $dark-gray1;
    text-align: left;
376 377
    padding: ($baseline*1.5) 0;
    margin: ($baseline/2) 0 0 0;
378 379
    letter-spacing: 0px;
  }
380

381
  ul.steps{
382
    padding: 0;
383 384 385 386
    margin: 0;
    list-style: none;
    border-top: 3px solid $light-gray1;
    border-bottom: 3px solid $light-gray1;
387 388

    li {
389
      display: inline-block;
390 391
      padding: 26px ($baseline*1.5);
      margin: 0 ($baseline*1.5);
392 393 394 395
      font-size: 20px;
      font-weight: 100;
      position: relative;
      color: $dark-gray1;
396 397 398 399 400 401 402 403 404 405

      &.active {
        font-weight: 400;
        border-bottom: 3px solid $light-gray1;
      }

      &:first-child {
        padding-left: ($baseline*1.5);
        margin-left: 0;
      }
406 407 408 409
      &:last-child {
        padding-right: 30px;margin-right: 0;
        &:after{display: none;}
      }
410
      &:after {
411 412 413 414 415 416 417 418 419
        content: "\f178";
        position: absolute;
        font-family: FontAwesome;
        right: -40px;
        color: #ddd;
        font-weight: 100;
      }
    }
  }
420 421 422 423 424 425 426 427 428

  hr {
    border-top: 1px solid $dark-gray2;
  }

  .user-data {
    margin: $baseline 0;

    .image {
429 430
      width: 220px;
      float: left;
431 432

      img {
433 434 435 436
        width: 100%;
        height: auto;
      }
    }
437 438

    .data-input {
439 440 441
      width: calc(100% - 245px);
      float: left;
      margin-left: 25px;
442 443

      h3, h3 span {
444 445 446 447 448
        font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
        font-size: 16px;
        text-transform: uppercase;
        color: $light-gray2;
        padding: 0;
449
        line-height: 20px;
450
      }
451 452

      h1 {
453 454
        font-size: 24px;
        color: $dark-gray1;
455
        padding: 0 0 ($baseline/2) 0;
456
        text-transform: capitalize;
457 458 459 460

        span {
          font-size: 16px;
        }
461 462
        width: 700px;
        float: left;
463
      }
464 465 466

      span.date {
        width: calc(100% - 700px);
467 468
        float: right;
        text-align: right;
469 470 471 472 473 474 475 476 477
      }

      hr {
        border-top: 1px solid $dark-gray2;
        clear: both;
      }

      .three-col {
        .col-1 {
478 479 480 481 482
          width: 450px;
          float: left;
          font-size: 16px;
          text-transform: uppercase;
          color: $light-gray2;
483 484
          padding-top: 11px;
          font-weight: 400;
485 486 487 488 489 490 491 492 493 494
          .price {
            span {
              color: $dark-gray1;
              font-size: 24px;
              padding-left: $baseline;
            }

            &.green {
              color: $green1;
            }
495

496 497 498
            .line-through {
              text-decoration: line-through;
            }
499 500
          }
        }
501 502

        .col-2 {
503 504 505 506 507
          width: 350px;
          float: left;
          line-height: 44px;
          text-transform: uppercase;
          color: $light-gray2;
508
          margin-top: 3px;
509 510

          .numbers-row {
511 512 513 514 515 516 517 518 519
            position: relative;
            label{
              font-size: 16px;
              text-transform: uppercase;
              color: $light-gray2;
              font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
              font-weight: 400;
              font-style: normal;
            }
520
            .counter {
521 522
              margin-left: 25px;
              border-radius: 3px;
523
              padding: 6px ($baseline*1.5) 6px ($baseline/2);
524 525
              display: inline-block;
              border: 2px solid $dark-gray2;
526 527

              input[type="text"] {
528 529 530 531 532 533 534 535 536 537 538
                width: 75px;
                border: none;
                box-shadow: none;
                color: #666;
                font-size: 25px;
                font-style: normal;
                font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
                font-weight: 600;
                padding: 8px 0;
                height: auto;
                text-align: center;
539 540

                &:focus {
541 542 543 544
                  outline: none;
                }
              }
            }
545 546

            .button {
547 548
              position: absolute;
              background: none;
549
              margin-left: -($baseline*1.5);
550 551 552 553 554
              padding: 0;
              border: none;
              box-shadow: none;
              text-shadow: none;
              height: 17px;
555 556

              i {
557 558 559 560
                color: $dark-gray2;
                font-size: 24px;
                span{display: none;}
              }
561 562 563 564 565 566 567 568 569

              &.inc {
                top: 9px;
              }

              &.dec {
                top: 30px;
                height: 22px;
              }
570
            }
571 572 573

            &.disabled {
              .counter {
574
                border: 2px solid $gray;
575

576
                &:hover {
577 578
                  cursor: not-allowed;
                }
579 580

                input {
581
                  color: $gray-l3;
582 583
                }
              }
584 585 586

              .button {
                i {
587
                  color: $gray-l3;
588 589
                }
              }
590 591 592 593 594 595 596
            }

            .updateBtn {
              display: inline-block;
              float: right;
              font-size: 15px;
              padding: 25px 35px 25px 0;
597

598 599
              &:focus {
                outline: none;
600 601
              }
            }
602 603

            span.error-text {
604 605 606 607
              display: block;
              text-transform: lowercase;
            }
          }
608

609 610 611 612
          .disable-numeric-counter{
            pointer-events: none;
          }
        }
613 614

        .col-3 {
615
          width: 40px;
616
          float: right;
617
          padding-top: 13px;
618 619

          a.btn-remove {
620 621
            float: right;
            opacity: 0.8;
622 623

            i {
624
              color: $dark-gray2;
625
              font-size: 24px;
626 627
              line-height: 40px;
            }
628 629 630 631 632

            &:hover {
              text-decoration: none;
              opacity: 1;
            }
633 634 635 636 637
          }
        }
      }
    }
  }
638 639

  .discount {
640 641
      border-bottom: 2px solid $light-gray1;
      border-top: 2px solid $light-gray1;
642 643
      margin: $baseline 0;
      padding: 17px $baseline 15px;
644
      min-height: 45px;
645 646 647 648 649 650 651 652 653 654 655

      .code-text {

        a {
          color: $blue1;
          font-size: 18px;
          text-transform: lowercase;
          font-weight: 600;
          display: inline-block;
          padding: ($baseline/2) 0;
          cursor: pointer;
656
        }
657

658 659
        span{
          display: inline-block;
660 661 662
          padding: 9px 0;
          margin-right: -($baseline);

663 664 665
          b{
            font-weight: 600;
            font-size: 24px;
666
            padding-left: $baseline;
667 668 669 670 671
            letter-spacing: 0;
          }
        }
      }

672
    .code-input {
673
      display: inline-block;
674 675

      input[type="text"] {
676 677 678 679 680 681 682
        font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
        font-style: normal;
        border: 2px solid $dark-gray2;
        height: auto;
        padding: 8px 12px;
        font-weight: 600;
        width: 260px;
683

684
        &:focus {
685 686 687
          border-color: $dark-gray2;
          box-shadow: none;
        }
688 689 690 691

        &.error {
          border-color: $red1;
        }
692
      }
693 694

      .error-text {
695 696 697 698 699
        color: $red1;
        font-size: 12px;
        display: block;
        padding-bottom: 0;
      }
700 701

    input[type="submit"] {
702 703 704 705 706 707 708 709
      padding: 9px 35px;
    }
    }
    .code-applied{
      display: inline-block;
      .green{
        color: $green1;
        font-weight: 600;
710
        margin-right: $baseline;
711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
      }
      input[type="submit"]{
        padding: 9px 35px;
        background: white;
        border: 2px solid $dark-gray2;
        color: $dark-gray2;
        box-shadow: none;
        text-shadow: none;
        &:hover{
          background: white;
          color: $dark-gray1;
          border: 2px solid $dark-gray2;
        }
      }
    }
    input[type="submit"]{
      width: auto;
728
      padding: 7px $baseline;
729 730 731 732 733 734 735 736 737 738 739 740 741 742
      height: auto;
      float: none;
      font-size: 16px;
      letter-spacing: 0;
      font-weight: 600;
      &:hover{
        background: #1F8FC2;
        border: 1px solid transparent;
        box-shadow: none;
      }
    }
    }
    .col-two{
      overflow: hidden;
743 744
      padding-bottom: $baseline;
      border-bottom: 2px solid $gray-l5;
745 746 747
      .row-inside {
        float: left;
        width: 50%;
748
        padding: ($baseline/2) 0;
749 750 751 752
        b{
          font-size: 14px;
          width: 190px;
          display: inline-block;
753
          margin-right: $baseline;
754 755 756 757 758
          font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
          vertical-align: top;
        }
        label{
          width: 300px;
759
          margin: 0;
760 761 762 763 764 765 766
          display: inline-block;
          font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
          font-style: normal;
          font-size: 14px;
          word-wrap: break-word;
        }
      }
767 768

      .col-1 {
769 770
        width: 35%;
        float: left;
771 772

        span.radio-group {
773 774 775
          display: inline-block;
          border: 2px solid #979797;
          border-radius: 3px;
776 777
          margin: ($baseline/2) 0;
          margin-left: ($baseline/4);
778 779

          &:first-child {
780
            margin-left: ($baseline*0.75);
781
          }
782 783

          &.blue {
784
            border-color: $blue2;
785 786

            label {
787 788 789
              color: $blue2;
            }
          }
790 791

          label {
792 793 794 795 796 797 798 799 800 801 802
            font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
            font-size: 16px;
            font-style: normal;
            color: $dark-gray2;
            font-weight: 400;
            padding: 8px 15px 8px 6px;
            display: inline-block;
            margin-bottom: 0;
          }
          }
          input[type="radio"]{
803
            margin-left: ($baseline/2);
804 805
          }
        }
806

807 808 809 810 811 812 813 814 815 816
      .col-2{
        width: 65%;
        float: right;
        input[type="submit"]{
          width: auto;
          padding: 18px 60px 22px 30px;
          height: auto;
          font-size: 24px;
          letter-spacing: 0;
          font-weight: 600;
817
          margin-left: ($baseline*0.75);
818 819 820
          &#register{
            padding: 18px 30px;
          }
821
          &:hover{background: $m-blue-d2;box-shadow: none;}
822 823 824 825 826 827 828 829 830
         }
        p{
          font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
          padding: 13px 0;
          text-align: right;
        }
        form{
          position: relative;
        }
831
          .fa-caret-right {
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
            position: absolute;
            right: 30px;
            top: 25px;
            color: white;
            font-size: 24px;
          }

        label.pull-right{
          font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
          font-style: normal;
          text-align: right;
          padding: 10px 25px 10px;
          display: inline-block;
          float: right;
          line-height: 20px;
          color: $dark-gray1;
        }
      }
    }
  .disclaimer{
    color: $light-gray2;
853
    padding: ($baseline/2) 0;
854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
    text-align: right;
    font-weight: 300;
  }
  h3{
    font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 30px 20px;
    color: $dark-gray1;
  }
  .billing-data{
    display: table;
    width: 100%;
    h3{
      padding: 12px 0px;
      color: $dark-gray1;
      font-size: 17px;
871
      margin-bottom: ($baseline/4);
872 873 874 875 876 877 878 879 880 881
    }
    .row{
      display: table-row;
    }
    .col-half{
      width: 45%;
      float: left;
      background: $light-gray1;
      padding: 20px;
      border-radius: 4px;
882
      margin-bottom: ($baseline*0.75);
883 884 885 886 887
      min-height: 240px;
      &:nth-child(even){
        margin-left: 30px;
      }
      .data-group{
888
      margin-bottom: ($baseline*0.75);
889 890 891 892 893 894 895 896
        label{
        display: block;
        font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        color: $dark-gray2;
      }
897
      input{width: 100%;margin-bottom: ($baseline/4);}
898
      &:nth-child(4n){
899
        margin-right: 0;
900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
      }
    }
    }
  }
  .error-text{
    color: $red1;
    font-size: 12px;
    display: block;
    padding-bottom: 0;
  }
  .gray-bg{
    background: $light-gray1;
    border-radius: 3px;
    padding: 20px 20px 20px 30px;
    margin: 20px 0;
    overflow: hidden;
    .message-left{
917
      width: 100%;
918 919 920 921 922 923 924 925 926
      float: left;
      line-height: 24px;
      color: $dark-gray1;
      b{
        text-transform: capitalize;
      }
      a.blue{
        margin:0 0 0 20px;
        i{
927
          margin-left: ($baseline/2);
928 929
        }
      }
930 931 932 933
      .mt-7 {
        display: block;
        margin-top: 7px;
      }
934 935 936 937 938
    }
  }
  .bordered-bar{
    border-bottom: 2px solid $light-gray1;
    border-top: 2px solid $light-gray1;
939
    margin-bottom: $baseline;
940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960
    padding: 20px;
    h2{
      color: $dark-gray1;
      font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
      font-weight: bold;
      margin-bottom: 0;
      font-size: 17px;
      span{
        padding-left: 60px;
        text-transform: capitalize;
        .blue-link{
          color: $blue2;
          font-size: 14px;
          &:hover{
            text-decoration: none;
          }
        }
      }
    }
  }
  .pattern{
961 962
    margin-top: ($baseline/2);
    margin-bottom: $baseline;
963 964
    padding:20px;
    color: $dark-gray1;
965 966 967
    h2 {
      font-family: $sans-serif;
    }
968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
  }
  hr.border{
    border-top: 2px solid $light-gray1;
  }
  .no-border{border: none !important; }
  table.course-receipt{
    width: 94%;
    margin: auto;
    margin-bottom: 27px;
    thead{
      th{
        color: $light-gray2;
        font-weight: normal;
        text-align: center;
        text-transform: uppercase;
        padding: 8px 0;
        border-bottom: 1px solid $dark-gray2;
        &:first-child{
          text-align: left;
        }
        &:last-child{
989
          text-align: center;
990 991 992 993 994 995 996 997 998 999 1000 1001
        }
      }
    }
    tr{
      border-bottom: 1px solid $light-gray1;
      &:last-child{
        border-bottom: none;
      }
      td{
        padding: 15px 0;
        text-align: center;
        color: $dark-gray1;
1002 1003 1004
        width: 30%;
        &:nth-child(2){width: 20%;}
        &:nth-child(3){width: 40%;}
1005 1006 1007 1008 1009 1010
        &:first-child{
          text-align: left;
          font-size: 18px;
          text-transform: capitalize;
        }
        &:last-child{
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
          text-align: center;
          span{
            padding: 2px 10px;
            font-size: 13px;
            color: #fff;
            display: inline-block;
            border-radius: 3px;
            min-width: 55px;
            text-align: center;
            &.red{
              background: rgb(231, 92, 92);
            }
            &.green{
              background: rgb(108, 204, 108);
            }
          }
1027 1028 1029 1030 1031
        }
      }
    }
  }
}
1032 1033 1034

.empty-cart {
  padding: $baseline 0;
1035 1036 1037
  background: $light-gray1;
  text-align: center;
  border-radius: 3px;
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
  margin: $baseline 0;

  h2 {
    font-size: 24px;
    font-family: "Open Sans",Verdana,Geneva,sans-serif,sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    color: #9b9b9b;
    text-align: center;
    margin-top: $baseline;
    text-transform: initial;
    margin-bottom: ($baseline/4);
1050
  }
1051

1052 1053 1054 1055 1056
  p {
    font-size: 14px;
    font-family: $sans-serif;
    color: #9d9d9d;
    text-align: center;
1057
    text-shadow: 0 1px 1px $white;
1058
  }
1059 1060

  a.blue {
1061 1062 1063
    display: inline-block;
    background: $blue2;
    color: white;
1064
    padding: $baseline ($baseline*2);
1065 1066 1067
    border-radius: 3px;
    font-size: 24px;
    font-weight: 400;
1068 1069 1070
    margin: ($baseline/2) 0 $baseline;

    &:hover {
1071 1072 1073 1074 1075 1076 1077
      text-decoration: none;
    }
  }
}

// Print

1078 1079
@media print {

1080 1081 1082
  a[href]:after {
    content: none !important;
  }
1083

1084 1085 1086
  ul.steps, a.blue.pull-right, .bordered-bar span.pull-right, .left.nav-global.authenticated {
    display: none;
  }
1087 1088

  .shopping-cart {
1089
    font-size:  14px;
1090 1091 1092
    padding-right: ($baseline*2);

    .gray-bg {
1093
      margin: 0;
1094
      padding: ($baseline/2) 0 $baseline 0;
1095
      background: none;
1096 1097

      .message-left {
1098 1099 1100
        width: 100%;
      }
    }
1101 1102

    .bordered-bar {
1103

1104
      h2 {
1105 1106
        font-size: 14px;
      }
1107 1108

      span {
1109 1110 1111
        float: right;
      }
    }
1112 1113 1114 1115 1116 1117 1118 1119
    .user-data {

      .data-input {

        h1 {
          font-size: 18px;
        }
      }
1120
    }
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132

    table.course-receipt {

      tr {

        td {

          a {

            &:before {
              content:" " attr(data-base-url) " ";
              display: inline-block;}
1133 1134 1135
          }
        }
      }
1136 1137 1138 1139 1140 1141 1142 1143

      th:last-child {
        display: none;
      }

      td:last-child {
        display: none;
      }
1144
    }
1145 1146
  }
}